parent
81a0ea28c7
commit
4ccd665920
@ -2,8 +2,14 @@
|
||||
@section('title', $photo->name)
|
||||
|
||||
@section('breadcrumb')
|
||||
<li class="breadcrumb-item"><a href="{{ route('home') }}">Gallery</a></li>
|
||||
<li class="breadcrumb-item"><a href="{{ route('home') }}"><i class="fa fa-fw fa-home"></i></a></li>
|
||||
@foreach ($album->albumParentTree() as $parentAlbum)
|
||||
@if ($parentAlbum->id == $photo->album->id)
|
||||
<li class="breadcrumb-item"><a href="{{ $return_album_url }}">{{ $photo->album->name }}</a></li>
|
||||
@else
|
||||
<li class="breadcrumb-item"><a href="{{ $parentAlbum->url() }}">{{ $parentAlbum->name }}</a></li>
|
||||
@endif
|
||||
@endforeach
|
||||
<li class="breadcrumb-item active">{{ $photo->name }}</li>
|
||||
@endsection
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user