@extends('layouts.admin') @section('page-title', 'Pickup Hub Orders') @section('content')
You have total {{ $stats['total'] }} pickup hub orders
{{ $stats['total'] }}
Total
{{ $stats['pending'] }}
Pending
{{ $stats['processing'] }}
Ready for Pickup
{{ $stats['delivered'] }}
Picked Up
{{ $stats['cancelled'] }}
Canceled
| # | Order Code | Customer | Pickup Hub | Total Product | Price | Delivery Status | Payment Status | Options |
|---|---|---|---|---|---|---|---|---|
| {{ $orders->firstItem() + $index }} | {{ $order->order_number }} |
{{ $order->customer->name }}
|
{{ $order->pickupHub?->name ?? '-' }} | {{ $order->items->count() }} | ${{ number_format($order->total, 2) }} | {{ ucfirst(str_replace('_', ' ', $order->status)) }} | {{ ucfirst($order->payment_status) }} | |
|
No pickup hub orders found Try adjusting your filters |
||||||||