@extends('layouts.public') @section('public-content')

Gallery

@if($albums->count())
@foreach($albums as $album)

{{ $album->title }}

@foreach($album->images as $image)
{{ $image->caption ?? $album->title }} @if($image->caption)

{{ $image->caption }}

@endif
@endforeach
@endforeach
@else

No albums available yet.

@endif
@endsection