{{ __('Backup Monitor') }}

@forelse($databaseBackupList as $item) @empty @endforelse
# {{ __('DISK') }} {{ __('HEALTHY') }} {{ __('AMOUNT OF BACKUPS') }} {{ __('NEWEST BACKUP') }} {{ __('USED STORAGE') }}
# {{ $loop->iteration }} {{ $item['disk'] }} @if($item['healthy']) {{ __('success') }} @else {{ __('danger') }} @endif {{ $item['amount'] }} {{ $item['newest'] }} {{ $item['usedStorage'] }}
page not found

{{ __('No results found.') }}

@if (session('message')) @endif @if (session('error')) @endif

{{ __('Backup List') }}

@can('database_backup create') {{ __('Take Backup') }} @endcan
@forelse($files as $key => $item) @empty @endforelse
# {{ __('PATH') }} {{ __('DATE') }} {{ __('SIZE') }} {{ __('ACTION') }}
# {{ $loop->iteration }} {{ $item['path'] }} {{ date("F jS, Y", strtotime($item['date'])) }} {{ $item['size'] }}
@can('database_backup download') @endcan @can('database_backup delete')
@csrf @method('DELETE')
@endcan
page not found

{{ __('No results found.') }}

@push('scripts') @endpush