!$compact])>
@unless($compact)
Chases
{{ $chases->count() }}
@endunless
{{-- Record a chase --}}
@can('dsars.responses.log')
@endcan
{{-- Logged chases --}}
@if($compact)
{{-- shown in the contact log instead --}}
@elseif($chases->isNotEmpty())
@foreach($chases as $chase)
Chase
{{ $chase->chased_at?->format('d/m/Y') }}
@if($chase->notes)
{{ $chase->notes }}
@endif
by {{ $chase->user?->name ?? 'System' }}
· {{ $chase->created_at->diffForHumans() }}
@endforeach
@else
No chases recorded yet.
@endif