@extends('admin.layouts.app') @section('page-title', 'Orders') @section('content')
{{-- Header --}}

Order Management

{{-- Create Order Form --}}
New Order Form
@csrf
{{-- Mark No --}}
{{-- Orders Table --}}
Recent Orders
@forelse($orders as $index => $order) @empty @endforelse
# 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
{{-- Autofill JS --}} @endsection