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

{{ $title ?? 'Database Backups' }}

@csrf
@if(isset($backups) && count($backups) > 0) @foreach($backups as $b) @endforeach
File Name Size Date Action
{{ $b['name'] }} {{ round($b['size'] / 1048576, 2) }} MB {{ date('Y-m-d H:i:s', $b['last_modified']) }} Download
@csrf @method('DELETE')
@else
No backups found. Click "Create New Backup" to generate one.
@endif
@endsection