{{-- resources/views/admin/fotos/index.blade.php --}} @extends('layouts.admin') @section('title', 'Galeri Foto') @section('content')

Manajemen Konten: Galeri Foto

Kelola semua foto di galeri.
Daftar Foto
@forelse ($fotos as $foto) @empty @endforelse
No Gambar Judul/Keterangan Album Tgl. Upload Aksi
{{ ($fotos->currentPage()-1) * $fotos->perPage() + $loop->iteration }} {{ $foto->title }} {{ $foto->title ?? '-' }} {{ $foto->album?->album_name ?? 'Tanpa Album' }} {{ $foto->created_at ? $foto->created_at->translatedFormat('d F Y') : 'N/A' }}
@csrf @method('DELETE')
Belum ada foto di galeri.
{{ $fotos->links('pagination::bootstrap-5') }}
@endsection