@extends('frontend.default.layouts.app') @section('meta_title', 'Album: '.$album->title.' - '.getSetting('web_name', config('app.name'))) @section('meta_description', 'Galeri album '.$album->title) @section('breadcrumbs') @endsection @section('content')
@forelse ($gallerys as $gallery)
@if ($gallery->title)
{{ $gallery->title }}
@endif @if ($gallery->content) @endif
@empty
Belum ada gambar dalam album ini.
@endforelse
@include('frontend.default.partials.pagination', ['paginator' => $gallerys])
@endsection