@extends('layouts.app') @section('title', 'Backup Details') @section('content')
Back to Backups

{{ $info['name'] }}

Backup details and restore options

@php $typeColors = [ 'full' => 'bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400', 'database_only' => 'bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400', 'files_only' => 'bg-purple-100 text-purple-800 dark:bg-purple-900/30 dark:text-purple-400', ]; $typeLabels = [ 'full' => 'Full Backup', 'database_only' => 'Database Only', 'files_only' => 'Files Only', ]; @endphp {{ $typeLabels[$info['type']] ?? $info['type'] }}

Created on {{ \Carbon\Carbon::parse($info['created_at'])->format('d M Y \a\t H:i') }}

@if($info['notes'])

Notes: {{ $info['notes'] }}

@endif
Created By
{{ $info['created_by'] }}
@if($info['database_backup'])
Database Size
{{ $info['database_size'] ?? 'N/A' }}
@endif @if($info['files_backup'])
Files Size
{{ $info['files_size'] ?? 'N/A' }}
@endif
@if($info['database_backup']) Download Database SQL @endif @if($info['files_backup']) Download Files ZIP @endif

Restore from this Backup

Restore your system to this backup point

@csrf

Warning: This action is destructive!

Restoring will overwrite current data. A safety backup will be created automatically before restore.

@if($info['database_backup'] && $info['files_backup']) @endif @if($info['database_backup']) @endif @if($info['files_backup']) @endif
Cancel
@csrf @method('DELETE')
@endsection