@extends('admin.layouts.app') @section('page-title', 'Orders') @section('content')
Admin Dashboard
Monitor operations and manage system
📦
Total Shipments
1,247
👥
Active Customers
342
💰
Total Revenue
₹123
Pending Order
23
📦
Total Orders
453
🧑‍💼
Total Staff
125
📦
Total Items
321
Inactive Customers
10
Order Management
New Order Form
@csrf
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
@endsection