@extends('admin.layouts.app') @section('title', 'All Orders') @section('header_title', 'Order Management') @section('content')
Track, filter, update, and process customer orders placed from the Dwaraka store.
| Order ID | Customer | Contact | Items | Total Amount | Payment | Order Status | Date | Action |
|---|---|---|---|---|---|---|---|---|
| {{ $order->order_number }} |
{{ $order->customer_name }}
{{ $order->customer_email ?? 'No Email Provided' }}
|
{{ $order->customer_phone }} |
{{ $order->items->sum('quantity') }} items
{{ $order->items->pluck('product_name')->implode(', ') }}
|
₹{{ number_format($order->total_amount, 2) }}
{{ strtoupper($order->payment_method) }}
|
{{ strtoupper($order->payment_status) }} | {{ strtoupper($order->order_status) }} | {{ $order->created_at ? $order->created_at->format('M d, Y g:i A') : 'N/A' }} | VIEW |
|
No customer orders found matching your search. |
||||||||
Showing {{ $orders->firstItem() ?? 0 }} to {{ $orders->lastItem() ?? 0 }} of {{ $orders->total() }} orders