@extends('layouts.admin') @section('content')

System Backups

@csrf
@if(session('success')) @endif @if(session('error')) @endif
@forelse($backups as $backup) @empty @endforelse
Name Size Created At Actions
{{ $backup['name'] }} {{ number_format($backup['size'] / 1024 / 1024, 2) }} MB {{ $backup['created_at']->format('Y-m-d H:i:s') }}
Download
@csrf
@csrf @method('DELETE')
No backups found

Backup Information

Storage Location: {{ storage_path('app/backups') }}

Maximum Backups: {{ config('backup.max_backups', 5) }}

Backup Contents:

  • Database (MySQL dump)
  • Storage files (public storage)
  • Upload files (public/uploads)

Please ensure you have sufficient disk space before creating backups. It is recommended to store backups in a secure off-site location.

@endsection