@extends('layouts.app') @section('content')

Database Backups

Manage your database backups

Create Backup

Backup History

@if(count($backups) > 0) @foreach($backups as $backup) @endforeach
Filename Size Date Created Actions
{{ $backup['filename'] }} {{ $backup['size'] }} {{ $backup['created_at'] }}
@csrf @method('DELETE')
@else

No backups found. Create your first database backup.

@endif

Backup Information

About Database Backups

Database backups are essential for protecting your construction expense data. Regular backups help ensure you can recover your data in case of system failures or data corruption.

Backup Storage

Backups are stored in your application's storage directory. For additional security, consider downloading these backups and storing them in a separate location.

Recommendations

  • Create regular backups, especially before major data changes
  • Download and store backups in multiple secure locations
  • Test your backups periodically to ensure they can be restored
  • Delete old backups that are no longer needed to save space
@endsection