Orders

Create Order
@foreach($orders as $order) @endforeach
Invoice No Customer Store Delivery Partner Status Payment Total Date Actions
{{ $order->invoice_no ?? 'N/A' }}
#{{ $order->id }}
{{ $order->customer_name }}
{{ $order->customer_phone }}
{{ $order->store->store_name }} {{ $order->deliveryPartner->name ?? 'Not assigned' }} {{ ucfirst($order->status) }} {{ ucfirst($order->payment_status) }} {{ config('custom.currency_symbol') }} {{ number_format($order->total_amount, 2) }} {{ $order->created_at->format('M d, Y H:i') }} Track View
{{ $orders->links() }}