@extends('layouts.admin') @section('title', 'Kategori & Album Galeri') @section('content')

Buat Album / Kategori Baru

@csrf
@foreach($albums as $album)

{{ $album->nama_album }}

@if($album->deskripsi)

{{ $album->deskripsi }}

@else

Belum ada deskripsi untuk kegiatan ini.

@endif Total {{ $album->galleries_count }} Foto
Masuk & Upload Foto
@csrf @method('DELETE')
@if($album->galleries->count() > 0)
@foreach($album->galleries->take(4) as $index => $foto)
@if($index == 3 && $album->galleries_count > 4)
+{{ $album->galleries_count - 4 }}
@endif
@endforeach
@else
Album masih kosong
@endif
@endforeach
@endsection