@extends('admin.layouts.app') @section('page-title', 'Dashboard') @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
Recent Orders
@forelse($orders as $order) @empty @endforelse
# Order ID Mark No Origin Destination Total CTN Total QTY Total TTL/QTY Total Amount (₹) Total CBM Total TTL CBM Total KG Total TTL KG Status Date Action
{{ $order->id }} {{ $order->order_id }} {{ $order->mark_no }} {{ $order->origin }} {{ $order->destination }} {{ $order->ctn }} {{ $order->qty }} {{ $order->ttl_qty }} ₹{{ number_format($order->ttl_amount, 2) }} {{ $order->cbm }} {{ $order->ttl_cbm }} {{ $order->kg }} {{ $order->ttl_kg }} {{ ucfirst($order->status) }} {{ $order->created_at->format('d-m-Y') }} View
No orders found
@endsection