Order Management

Search, filter, update statuses, or register new customer orders.

@if (request('search') || request('status')) Reset @endif
@if ($orders->isEmpty())

No Orders Found

We couldn't find any orders matching your criteria. Try adjusting filters or create a new order.

Create New Order
@else
@foreach ($orders as $order) @endforeach
Customer Details Product & Address Amount Quick Status Update Actions
{{ $order->customer_name }}
{{ $order->phone }}
{{ $order->product_name }} @if($order->weight) {{ $order->weight }} @endif
{{ $order->address }}
Rs. {{ number_format($order->amount, 2) }}
@csrf @method('PATCH')
@csrf @method('DELETE')
{{ $orders->links() }}
@endif