{{-- HEADER --}}

Status

{{-- CURRENT STATUS --}}
{{ $willsCase->status->display_name ?? 'โ€”' }}
{{-- STATUS SELECT --}}
{{-- OFFCANVAS : STATUS HISTORY --}}
Status History
@if($willsCase->statusHistory->count())
    @foreach($willsCase->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
@if($showHistory)
@endif