@extends('layouts.admin') @section('title', 'Manual Orders') @section('content')

Manual Orders

Manage orders requiring manual shipping (non-serviceable areas)

Total Manual Orders

{{ number_format($stats['total']) }}

Pending

{{ number_format($stats['pending']) }}

Shipment Created

{{ number_format($stats['shipment_created']) }}

Ready to Ship

{{ number_format($stats['ready_to_ship']) }}

Clear
@csrf

Manual Orders

@forelse($orders as $order) @empty @endforelse
Order Customer Shipping Address Postal Code Total Shipping Status Tracking Actions
{{-- Only printable rows are selectable, which is what keeps the selection in step with the all-or-nothing backend check. --}} @if($order->hasShipment()) @endif
#{{ $order->order_number }}
{{ $order->created_at->ist()->format('M d, Y') }}
{{ $order->orderItems->count() }} item(s)
{{ $order->user->name }}
{{ $order->user->email }}
@if(isset($order->shipping_address['phone']))
{{ $order->shipping_address['phone'] }}
@endif
{{ $order->shipping_address['address_line_1'] ?? '' }} @if(isset($order->shipping_address['address_line_2']))
{{ $order->shipping_address['address_line_2'] }} @endif
{{ $order->shipping_address['city'] ?? '' }}, {{ $order->shipping_address['state'] ?? '' }}
{{ $order->shipping_address['postal_code'] ?? 'N/A' }}
Non-serviceable
₹{{ number_format($order->total_amount, 2) }} {{ $order->shipping_partner_status_label }} @if($order->shipment_created_at)
Shipment: {{ $order->shipment_created_at->ist()->format('M d, Y h:i A') }}
@endif @if($order->label_printed_at)
Label: {{ $order->label_printed_at->ist()->format('M d, Y h:i A') }}
@endif
@if($order->manual_tracking_id)
{{ $order->manual_courier_name }}
{{ $order->manual_tracking_id }}
@else - @endif
View Details @if($order->hasShipment()) Print Label & Invoice @else @endif

No manual orders found

Orders from non-serviceable areas will appear here.

@if($orders->hasPages())
{{ $orders->links() }}
@endif
@endsection