@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 --}}

Recent Assigned Orders

View all
@forelse($recentOrders as $order) @empty @endforelse
Order Status Customer Action
#{{ $order->id }} {{ ucfirst($order->status) }} {{ $order->customer_name ?? '—' }} View
No assigned orders
@endsection