@extends('admin.layouts.admin') @section('title','Orders') @section('page-title','Orders') @section('content')
| # | Order No | Merchant | Customer | Total | Status | |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | #{{ $order->order_no }} | {{ $order->merchant->name ?? '-' }} | {{ $order->customer->name ?? '-' }} | LKR {{ number_format($order->total,2) }} | {{ ucfirst($order->status) }} |