@aware(['page'])

{{$heading}}

{{$subheading}}

@php define("WORD_LIMIT", 100); @endphp @foreach ($content as $item)

{{$item['heading']}}

{{$item['subheading']}}

@php $words = explode(' ', $item['content']); $wordCount = count($words); $excerpt = $wordCount > WORD_LIMIT ? implode(' ', array_slice($words, 0, WORD_LIMIT)) . '...' : $item['content']; @endphp

{{ $excerpt }}

@if ($wordCount > WORD_LIMIT) @endif
@if ($item['image']) {{$item['heading']}} @else Descriptive Alt Text @endif
@endforeach