@extends('admin.layouts.app') @section('page-title', 'Dashboard') @section('content')
Admin Dashboard
Monitor operations and manage system
{{-- Row 1: Total Containers, Active Customers, Total Invoices, Paid Invoices --}}
🚢
Total Containers
{{ $totalContainers }}
👥
Active Customers
{{ $activeCustomers }}
🧾
Total Orders
{{ $totalInvoices }}
Paid Invoices
{{ $paidInvoices }}
{{-- Row 2: Pending Invoices, Total Staff, Inactive Customers, Total Revenue --}}
🕐
Pending Orders
{{ $pendingInvoices }}
🧑‍💼
Total Staff
{{ $totalStaff }}
Inactive Customers
{{ $inactiveCustomers }}
💰
Total Revenue
₹{{ number_format($totalRevenue, 2) }}
{{-- COMMENTED OUT --}} {{--
Pending Orders
{{ $pendingOrders }}
Overdue Invoices
{{ $overdueInvoices }}
Total Orders
{{ $totalOrders }}
Delivered Orders
{{ $totalOrders - $pendingOrders }}
--}}
@endsection