@extends('adminlte::page') @section('title', 'Backup Settings') @section('content_header')

Database Backup & Restore

@stop @section('content')

Create New Backup

@if(session('success'))
Success!
{{ session('success') }}
@endif @if(session('error'))
Error!
{{ session('error') }}
@endif

Create a backup of the entire database. This will help you restore the system in case of data loss.

@csrf

Available Backups

@forelse($backups as $backup) @empty @endforelse
Backup File Size Created At Actions
{{ $backup['name'] }} {{ round($backup['size'] / 1024, 2) }} KB {{ date('Y-m-d H:i:s', $backup['date']) }}
@csrf @method('DELETE')
No backups available

Backup Schedule

@csrf
Backups older than this will be automatically deleted
Cancel
@stop @section('css') @stop @section('js') @stop