@php $messages = [ ['title' => 'Message from the Chief Minister', 'designation' => 'Content pending', 'message' => 'Official message content is not yet available in the current static frontend.', 'url' => null], ['title' => 'Message from the Vice Chairman', 'designation' => 'Content pending', 'message' => 'Official message content is not yet available in the current static frontend.', 'url' => null], ['title' => 'Secretary, Srimanta Sankaradeva Kalakshetra Society', 'designation' => 'Institutional Message', 'message' => 'Kalakshetra continues to serve as a living cultural space where research, performance, museums and public learning come together for the people of Assam and visitors from across the world.', 'url' => url('/about/organisation')], ]; @endphp
@include('frontend.partials.section-heading', [ 'eyebrow' => 'Message', 'title' => 'Institutional Messages', 'summary' => 'Confirmed message content is reused where available. Pending content is shown only as structure.', ])
@foreach ($messages as $message)
{{ $message['designation'] }}

{{ $message['title'] }}

{{ $message['message'] }}

@if ($message['url']) Read More east @else Details pending @endif
@endforeach