@extends('layouts.app') @section('title', 'Shipping Dashboard - Gletra') @section('content')
| Order ID | Date | Customer | Status | Shipment | Action |
|---|---|---|---|---|---|
| #{{ $order->order_number }} | {{ $order->created_at->format('d M, Y') }} {{ $order->created_at->format('h:i A') }} |
{{ $order->user->name ?? 'Guest' }}
{{ $order->user->email ?? '-' }}
|
{{ ucfirst(str_replace('_', ' ', $order->order_status)) }} @if($order->is_rto) RTO @endif |
@if($order->awb_code)
{{ $order->awb_code }}
{{ $order->courier_name ?? 'Courier Assigned' }}
@else
Not Shipped
@endif
|
|
| No orders found for shipping. | |||||