{{ __('Photo Galleries') }}

@if ($galleries->count() > 0)
@foreach ($galleries as $gallery)
@if ($gallery->images && is_array($gallery->images) && count($gallery->images) > 0) {{ $gallery->getTranslation('title', app()->getLocale()) }} @endif

{{ $gallery->getTranslation('title', app()->getLocale()) }}

@if ($gallery->getTranslation('description', app()->getLocale()))

{{ Str::limit($gallery->getTranslation('description', app()->getLocale()), 100) }}

@endif {{ __('View Gallery') }} →
@endforeach
{{ $galleries->links() }}
@else

{{ __('No galleries available.') }}

@endif