Total Backup-uri
{{ $stats['total'] }}
Spațiu Utilizat
{{ number_format($stats['total_size'] / 1024 / 1024, 2) }} MB
Ultimul Backup
@if($stats['last_backup']) {{ $stats['last_backup']->created_at->diffForHumans() }} @else N/A @endif
| ID | Tip | Fișier | Dimensiune | Status | Creat de | Data | Acțiuni | |
|---|---|---|---|---|---|---|---|---|
| #{{ $backup->id }} | @if($backup->type === 'full') Full @else Incremental @endif |
{{ $backup->filename }}
|
{{ $backup->file_size_human }} | @if($backup->status === 'completed') Complet @elseif($backup->status === 'in_progress') În progres @elseif($backup->status === 'failed') Eșuat @else {{ $backup->status }} @endif | {{ $backup->creator->name ?? 'System' }} |
{{ $backup->created_at->format('d.m.Y') }}
{{ $backup->created_at->format('H:i:s') }}
|
Creează primul backup pentru a începe.
php artisan backup:database --type=full - Backup complet
php artisan backup:database --type=incremental - Backup incremental
php artisan backup:cleanup --days=10 - Cleanup backup-uri vechi
Atenție! Această acțiune este ireversibilă!
Ești sigur că vrei să ștergi 0 backup-uri?