@if($order->relationLoaded('statusLogs') && $order->statusLogs->isNotEmpty())

سجل التتبع

@foreach($order->statusLogs as $log)
{{ \App\Enums\VendorOrderStatus::tryFrom($log->status)?->timelineLabel() ?? $log->status }} {{ $log->recorded_at?->format('Y-m-d H:i') }}
@if($log->notes)

{{ $log->notes }}

@endif @if($log->actor)

{{ $log->actor->name }}

@endif
@endforeach
@endif