Database Backups

Manage system backups and data recovery

@csrf
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($backups as $backup) @empty @endforelse
Filename Size Type Created By Created At Actions
{{ $backup->filename }}
{{ $backup->formatted_size }} @if($backup->type == 'manual') Manual @elseif($backup->type == 'automatic') Automatic @else Scheduled @endif {{ $backup->creator?->name ?? 'System' }} {{ $backup->created_at->format('Y-m-d H:i:s') }}
@csrf @method('DELETE')

No backups found

Create your first backup to get started

@if($backups->hasPages())
{{ $backups->links() }}
@endif

Backup Information

  • • Backups include database and uploaded files
  • • Download backups regularly and store them in a secure location
  • • Backups are stored in: storage/app/backups
  • • For restoration, contact your system administrator