@extends('layouts.public') @section('content')
{{ __('common.gallery') }}

{{ __('messages.gallery_page_title') }}

{{ __('messages.gallery_title') }}

@foreach($galleryItems as $item)
@if($item->image) @php $image = \Illuminate\Support\Str::startsWith($item->image, ['http://', 'https://', '/']) ? $item->image : asset('storage/'.$item->image); @endphp {{ $item->localized_title }} @else
@endif

{{ $item->localized_title }}

@if($item->category) {{ $item->category }} @endif
@if($item->description)

{{ $item->description }}

@endif
@endforeach
@endsection