@extends('theme::layout') @section('title', 'Gallery') @section('content') @include('theme::_hero_banner', [ 'heroTitle' => 'Gallery', 'heroSubtitle' => 'A glimpse into our community life and celebrations', 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('web.home')], ['label' => 'Gallery'], ], ])
@forelse($galleries as $album)
📷

{{ $album->name }}

@if($album->description)

{{ $album->description }}

@endif

{{ $album->photos_count }} {{ Str::plural('photo', $album->photos_count) }}

@empty

No albums found.

@endforelse
{{ $galleries->links() }}
@endsection