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

Order Management

{{-- Create Order Form --}}
New Order Form
@csrf
{{-- Mark No --}}
{{-- Recent Orders Table --}}
Recent Orders
@forelse($orders as $index => $order) @empty @endforelse
# Order ID Mark No Description Origin Destination CTN QTY TTL/QTY Unit Price (₹) TTL Amount (₹) CBM TTL CBM KG TTL KG Shop No Status Date Action
{{ $order->id }} {{ $order->order_id }} {{ $order->mark_no }} {{ $order->description }} {{ $order->origin }} {{ $order->destination }} {{ $order->ctn }} {{ $order->qty }} {{ $order->ttl_qty }} {{ $order->unit }} ₹{{ number_format($order->price, 2) }} ₹{{ number_format($order->ttl_amount, 2) }} {{ $order->cbm }} {{ $order->ttl_cbm }} {{ $order->kg }} {{ $order->ttl_kg }} {{ $order->shop_no }} {{ ucfirst($order->status) }} {{ $order->created_at->format('d-m-Y') }} View
No orders found
{{-- Autofill JS --}} @endsection