{{-- Page content --}}
{{-- @php
dd(preg_split("/<[^>]*>/", $page->section_content, -1, PREG_SPLIT_NO_EMPTY));
@endphp --}}
@if (!empty($page->section_content))
@foreach (preg_split("/(<[^>]*>)/", $page->section_content, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY) as $part)
@if (strpos($part, '<') === 0)
{!! __($part) !!}
@else
{{ __($part) }}
@endif
@endforeach
@endif
@endsection