@extends('layouts.app') @section('title', __('Backup & Restore')) @section('content')
{{ __('Create Backup') }}

{{ __('Download a JSON snapshot of the current project database.') }}

@csrf
{{ __('Restore Backup') }}

{{ __('Restore replaces existing business records with the uploaded backup file.') }}

@csrf
{{ __('Recent Backups') }}
@forelse($backups as $backup) @empty @endforelse
{{ __('File') }}{{ __('Size') }}{{ __('Date') }}
{{ $backup['name'] }}{{ number_format($backup['size'] / 1024, 1) }} KB{{ \App\Support\DualDate::format(now()->createFromTimestamp($backup['date']), 'Y-m-d H:i') }}
{{ __('No backups created yet.') }}
@endsection