@extends('admin.master') @section('content')
All customer orders
| # | Order No | Customer | Phone | Total | Payment | Status | Sub Orders | Action |
|---|---|---|---|---|---|---|---|---|
| {{ $orders->firstItem() + $key }} | {{ $order->order_number }} | {{ $order->name }} | {{ $order->phone }} | ৳{{ number_format($order->total, 2) }} |
{{ strtoupper($order->payment_method) }}
{{ ucfirst($order->payment_status) }}
|
{{ ucfirst(str_replace('_', ' ', $order->status)) }} | {{ $order->subOrders->count() }} | Show |
| No orders found. | ||||||||