@extends('admin.layouts.app') @section('page-title', 'Orders') @section('content')
| # | Order ID | Mark No | Description | Origin | Destination | TTL Amount | Status | Date | Action |
|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $order->order_id }} | {{ $order->mark_no }} | {{ $order->description }} | {{ $order->origin }} | {{ $order->destination }} | ₹{{ number_format($order->ttl_amount, 2) }} | {{ ucfirst($order->status) }} | {{ $order->created_at->format('d-m-Y') }} | View |
| No orders found | |||||||||