All Orders

@php $currentStatus = request('status', 'pending'); @endphp
@forelse($orders as $order) @empty @endforelse
Order # Customer Merchant Total Status Date Actions
{{ $order->order_number }} {{ $order->customer->name }} {{ $order->merchant->name }} {{ format_price($order->total_amount) }} {{ $order->created_at->format('M d, Y') }} View
No orders found.
{{ $orders->links() }}