Database backups are essential for data protection. Regular backups help prevent data loss in case of system failures or other issues. Create, download, and manage your backups below.
Backup Path: {{ $debug['backup_path'] }}
Backup Count: {{ $debug['backup_count'] }}
Directory Exists: {{ $debug['directory_exists'] ? 'Yes' : 'No' }}
Directory Writable: {{ $debug['directory_writable'] ? 'Yes' : 'No' }}
Directory Readable: {{ $debug['directory_readable'] ? 'Yes' : 'No' }}
Directory Permissions: {{ $debug['directory_permissions'] }}
Found Files: {{ $debug['found_files'] }}
Raw Files: {{ $debug['raw_files'] }}
PHP User: {{ $debug['php_user'] }}
Storage Path: {{ $debug['storage_path'] }}
Public Path: {{ $debug['public_path'] }}
@if(isset($debug['error']))Error: {{ $debug['error'] }}
@endif @if(isset($debug['trace'])){{ $debug['trace'] }}
@endif
| Filename | Size | Created At | Actions |
|---|---|---|---|
|
{{ $backup['filename'] }}
|
@php
$size = $backup['size'];
if ($size < 1024) {
echo $size . ' B';
} elseif ($size < 1024 * 1024) {
echo round($size / 1024, 2) . ' KB';
} else {
echo round($size / (1024 * 1024), 2) . ' MB';
}
@endphp
|
{{ date('Y-m-d H:i:s', $backup['created_at']) }}
|
Create your first database backup to protect your data.