@extends('layout.app') @section('title', 'Cloud Backup') @section('content')
Daftar Backup Jobs
@if(session('success')) @endif
@forelse($backups as $backup) @empty @endforelse
# Nama Tipe Destination Schedule Status Last Run Aksi
{{ $backup->id }} {{ $backup->name }} {{ $backup->type }} {{ Str::limit($backup->destination, 30) }} {{ $backup->schedule }} {{ $backup->status }} {{ $backup->last_run?->format('Y-m-d H:i') ?? '-' }} edit Edit
@csrf @method('DELETE')
cloud_upload

Belum ada backup job

{{ $backups->links() }}
@endsection