@extends('layouts.website') @section('title', 'Photo Gallery') @section('hero') @endsection @push('styles') @endpush @section('content') {{-- Page heading --}}

Photo Gallery

@if($albums->isEmpty())

No albums published yet.

@else
@foreach($albums as $album) @php $cover = $album->images->first(); @endphp @endforeach
@endif
@endsection