@extends('layouts.admin') @section('title', 'Backups') @section('page-title', 'Backups') @section('content')
Completed Backups
{{ number_format($totalBackups) }}
Stored Volume
{{ number_format($totalSizeBytes / 1073741824, 2) }} GB
| User | Total | Completed | Failed | Size | Last Backup | |
|---|---|---|---|---|---|---|
|
{{ $row->user->name ?? 'Unknown' }}
{{ $row->user->email ?? '—' }}
|
{{ number_format($row->total_backups) }} | {{ number_format($row->completed) }} | @if($row->failed > 0) {{ number_format($row->failed) }} @else — @endif | {{ number_format($row->total_bytes / 1048576, 2) }} MB | {{ $row->last_backup_at ? \Carbon\Carbon::parse($row->last_backup_at)->diffForHumans() : '—' }} | View Backups |
| No backups found. | ||||||