@extends('layouts.app') @section('title', 'Backup Manager') @section('content')

Backup Manager

@csrf

Requires composer require spatie/laravel-backup and a configured disk in config/backup.php (local storage shown here — point it at S3/Backblaze for real off-server backups).

@forelse($backups as $b) @empty @endforelse
FileSize (MB)Created
{{ $b['name'] }}{{ $b['size'] }}{{ $b['modified'] }}
No backups yet.
@endsection