@php $paragraphs = explode("\n", $about->history_description); $firstParagraph = $paragraphs[0] ?? ''; $remainingParagraphs = array_slice($paragraphs, 1); @endphp
{{ $about->history_title ?? 'History' }}
@foreach($about->history_photos as $photo)
History {{$loop->iteration}}
@endforeach
{{ $firstParagraph ?? 'History' }}
@foreach($remainingParagraphs as $paragraph)

{{ $paragraph ?? 'History' }}

@endforeach