@extends('layouts.admin') @section('title', 'Manage Photo Albums') @section('header_title', 'Photo Galleries') @section('content')

Photo Albums

Create Album
@forelse($albums as $album) @empty @endforelse
Cover Album Name Total Photos Status Actions
@if($album->albumCover) {{ $album->albumName }} @else No Cover @endif {{ $album->albumName }} {{ $album->photos->count() }} Photos @if($album->albumActive) Active @else Inactive @endif Manage Photos ({{ $album->photos->count() }}) Edit
@csrf @method('DELETE')
No photo albums created yet.
@endsection