@foreach ($banners as $banner) @php $words = explode(' ', $banner->title); $first = $words[0] ?? ''; $last = count($words) > 1 ? array_pop($words) : ''; $middle = implode(' ', array_slice($words, 1)); $imagePath = $banner->image?->file?->image_path ? asset($banner->image->file->image_path) : asset('assets/background.png'); @endphp
{{ $banner->image?->alt_text ?? $banner->title }}
@if ($banner->context)
{!! $banner->context !!}
@endif
{{ $first }} @if ($middle) {{ $middle }} @endif {{ $last }}
@if ($banner->link) @endif
@endforeach