@extends('admin.layout') @section('title', 'Photo Gallery') @section('page_heading', 'Photo Gallery (Year Albums)') @section('content')
Create Year Album
@forelse ($albums as $album) @empty @endforelse
Year Title Published Action
{{ $album->year }} {{ $album->title }} {{ $album->is_published ? 'Yes' : 'No' }} Manage
@csrf @method('DELETE')
No albums found.
@endsection