@extends('layouts.admin') @php $currencySymbol = App\Models\AppSetting::getValue('currency_symbol', '₹'); @endphp @section('title', 'Orders') @section('header', 'Order Management') @section('content')
Track live order states, filter by store or date, export reports, and bulk update operational statuses.
| Order | Customer | Service | Amount | Status | Payment | Date | Actions | |
|---|---|---|---|---|---|---|---|---|
|
#{{ $order->order_number ?? $order->id }}
Order ID {{ $order->id }}
|
{{ $order->customer_name ?? 'N/A' }}
@if($order->customer_phone)
{{ $order->customer_phone }}
@endif
|
{{ ucfirst($serviceType) }}
@if($serviceType === 'parcel')
{{ $order->parcelOrder?->package_type ?? 'Parcel' }}
@else
{{ $order->restaurant->name ?? 'Store unavailable' }}
@endif
|
{{ $currencySymbol }}{{ number_format($order->total, App\Models\AppSetting::currencyDecimals()) }} | {{ ucfirst(str_replace('_', ' ', $status)) }} |
{{ ucfirst(str_replace('_', ' ', $paymentStatus)) }}
@if(($order->payout_status ?? '') === 'Payout Released')
Payout Released
@endif
|
{{ $order->created_at->format('d M Y') }}
{{ $order->created_at->format('h:i A') }}
|
||
No orders foundTry adjusting your filters. |
||||||||