@extends('themes.base.layout') @section('title', $album->name) @php ($hasChildren = $album->children()->count() > 0) @section('content')
@include(\App\Facade\Theme::viewName('partials.album_view_selector'))

{{ $album->name }}

{{ $album->description }}


@foreach ($photos as $photo)
@endforeach
@if ($hasChildren)
@foreach ($album->children as $childAlbum)
@endforeach
@endif
{{ $photos->links() }}
@endsection