@if($timeline->isEmpty())
এখনো কোনো delivery activity log নেই।
@else
@foreach($timeline as $history)
{{ $history->created_at->format('d M Y, h:i A') }}
{{ $history->performerLabel() }}
@if(!empty($history->extra_data['courier']))
{{ \App\Models\CourierApi::displayName($history->extra_data['courier']) }}
@endif
{{ $history->timelineStageLabel() }}
{{ $history->timelineMessage() }}
@endforeach
@endif