@php $state = $state ?? []; $state = is_array($state) ? $state : []; @endphp
{{ $state['title'] ?? 'No detail available' }}
@if (filled($state['description'] ?? null))
{{ $state['description'] }}
@endif