@if(count($pending) > 0)
@foreach($pending as $item)
{{ $item['service_name'] }}
@if($item['status'] == 'OVERDUE') OVERDUE @elseif($item['status'] == 'WARNING') DUE SOON @else COMPLETED @endif
Last: {{ $item['last_service_km'] ?: '0' }} KM
Due: {{ $item['next_due_km'] ?: 'N/A' }} KM
@if($item['next_due_date'])
Due Date: {{ date('d-M-Y', strtotime($item['next_due_date'])) }}
@endif
@endforeach
@else
All systems operational. No pending services.
@endif