@extends('layouts.app') @section('title', 'Database Backup') @push('styles') @endpush @section('content')

Database backup

Download a MySQL dump of the database

{{ number_format($size, 1) }} KB

Database size

{{ count($tables) }}

Tables

{{ date('d M Y, H:i') }}

Last modified

Warning: This downloads the entire MySQL database as a SQL file. It may contain sensitive data. Handle with care.

Download backup

Database tables

@forelse ($tables as $index => $table) @empty @endforelse
# Table name
{{ $index + 1 }} {{ $table->name }}
No tables found.
@endsection