@extends('layouts.website') @section('title', ($album->title ?: ('Album ' . $album->year))) @section('hero') @endsection @section('content') {{-- Page heading --}} {{ $album->title ?: ('Album ' . $album->year) }} @if($album->images->isEmpty()) No images in this album. @else Back @foreach($album->images as $img) @endforeach @endif @endsection
No images in this album.