{{-- HEADER --}}

Claim Status

{{-- CURRENT STATUS --}}
{{ $claim->status->display_name ?? '—' }}
{{-- STATUS EDIT --}}
{{-- UPDATE BUTTON --}}
{{-- OFFCANVAS : STATUS HISTORY --}}
Status History
@if($claim->statusHistory->count())
    @foreach($claim->statusHistory as $history)
  • {{ $history->status?->display_name }}
    {{ $history->created_at->format('d M Y H:i') }} @if($history->changed_by) · {{ $history->user?->name_first }} {{ $history->user?->name_last }} @endif
  • @endforeach
@else
No status history recorded.
@endif
{{-- BACKDROP --}} @if($showHistory)
@endif