@extends('layouts.admin') @section('page-title', 'Admin Dashboard') @section('content')
@php $cards = [ ['Total Customers', $totalUsers, 'people'], ['Active Customers', $activeUsers, 'person-check'], ['Total Products', $totalProducts, 'box-seam'], ['Total Stock Value', '₹' . number_format($stockValue, 2), 'cash-stack'], ["Today's Orders", $todaysOrders, 'clipboard-check'], ['Pending Orders', $pendingOrders, 'hourglass-split'], ['Monthly Sales', '₹' . number_format($monthlySales, 2), 'graph-up'], ['Outstanding Payments', '₹' . number_format($outstanding, 2), 'exclamation-triangle'], ]; @endphp @foreach ($cards as [$label, $value, $icon])
{{ $label }}
{{ $value }}
@endforeach
Monthly Sales (last 6 months)
Top Selling Products
Stock Status
@endsection @push('scripts') @endpush