@extends('admin.layouts.app') @section('title', 'Database Backup') @section('page_title', 'Database Backup') @section('content')
Database Backups
@csrf
@if(session('success')) @endif @if(session('error')) @endif
@forelse($backups as $backup) @empty @endforelse
ID File Name Size Created At Actions
{{ $loop->iteration }} {{ $backup['filename'] }} {{ $backup['filesize'] }} {{ date('d-m-Y H:i:s', strtotime($backup['created_at'])) }} Download
@csrf @method('DELETE')
No backups found. Click "Create New Backup" to create your first backup.
@endsection