@extends('layouts.app') @section('title', 'Shipping Dashboard - Gletra') @section('content')
@include('vendor.partials.sidebar-column')

Shipping & Logistics

Auto Pickup Enabled
@if(session('success')) @endif @if(session('error')) @endif
Order Shipments
@forelse($orders as $order) @empty @endforelse
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
@if(!$order->awb_code && $order->order_status != 'cancelled')
@csrf
@elseif($order->awb_code) Label Invoice @endif
No orders found for shipping.
@endsection