{{ data_get_str($application, 'name')->limit(10) }} > Backups | Coolify
@can('update', $application) @endcan

Schedules

{{ $backups->count() }}

Enabled

{{ $backups->where('enabled', true)->count() }}

Total executions

{{ $backups->sum('executions_count') }}

$backups->isNotEmpty(), ])>
@if ($backups->isNotEmpty())
Target Type Schedule Status S3 Last run Executions
@foreach ($backups as $backup) @php $latestExecution = $backup->latestExecution; $status = $latestExecution?->status; $statusLabel = match ($status) { 'running' => 'In progress', 'success' => 'Success', 'failed' => 'Failed', default => $backup->enabled ? 'Waiting' : 'Disabled', }; $statusType = match ($status) { 'running' => 'warning', 'success' => 'success', 'failed' => 'error', default => 'neutral', }; @endphp {{ $backup->targetName() }} {{ $backup->targetType() }} {{ $backup->frequency }} {{ $latestExecution?->finished_at?->diffForHumans() ?? ($status === 'running' ? 'Running now' : 'Never') }} {{ $backup->executions_count }} @endforeach
@else @endif