@extends('layouts.admin') @section('title', 'Orders') @section('content')
| Order # | Customer | Restaurant | Rider | Status | Payment | Total | |
|---|---|---|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->customer->name ?? '-' }} | {{ $order->restaurant->name ?? '-' }} | {{ $order->rider->name ?? '-' }} | {{ ucfirst($order->status) }} | {{ ucfirst($order->payment_status) }} ({{ strtoupper($order->payment_method) }}) | ₹{{ number_format($order->total_amount, 2) }} | View |
| No orders found. | |||||||