@extends('driver.layout')
@section('title','Driver Dashboard')
@section('content')
{{-- HEADER --}}
Driver Dashboard
Overview of your deliveries
{{ now()->format('d M Y') }}
{{-- STATS --}}
{{-- TOTAL --}}
Total Assigned
{{ $stats['total'] ?? 0 }}
{{-- PENDING --}}
Pending
{{ $stats['pending'] ?? 0 }}
{{-- DELIVERED --}}
Delivered
{{ $stats['delivered'] ?? 0 }}
{{-- TODAY --}}
Today
{{ $stats['today'] ?? 0 }}
{{-- RECENT ORDERS --}}
| Order |
Status |
Customer |
Action |
@forelse($recentOrders as $order)
|
#{{ $order->id }}
|
{{ ucfirst($order->status) }}
|
{{ $order->customer_name ?? '—' }}
|
View
|
@empty
|
No assigned orders
|
@endforelse
@endsection