{{-- ================= KPI CARDS ================= --}}
{{-- ================= SALES GRAPH ================= --}}
{{-- ================= ALERTS ================= --}}
{{-- ================= QUICK VIEWS ================= --}}
{{-- ================= ACTIVITY FEED ================= --}}
Today Revenue
₹ {{ number_format($todayRevenue,2) }}
Today Orders
{{ $todayOrders }}
Monthly Revenue
₹ {{ number_format($monthlyRevenue,2) }}
Customers
{{ $totalCustomers }}
Sales & Revenue Snapshot
⚠ Alerts
-
@if($quotationPending > 0)
- Pending Quotations {{ $quotationPending }} @endif @if($pendingInstallation > 0)
- Pending Installation {{ $pendingInstallation }} @endif @if($lowStockProducts > 0)
- Low Stock Products {{ $lowStockProducts }} @endif
{{-- Orders Quick View --}}
{{-- Project Status --}}
{{-- Quotation Status --}}
{{-- ================= RECENT ORDERS ================= --}}
Orders Quick View
{{ $ordersToday }}
Today
{{ $pendingOrders }}
Pending
{{ $processingOrders }}
Processing
{{ $completedOrders }}
Completed
Project Status
- Total Projects {{ $totalProjects }}
- In Progress {{ $projectsInProgress }}
- Completed {{ $projectsCompleted }}
- Pending Material {{ $pendingMaterial }}
- Pending Installation {{ $pendingInstallation }}
Quotation Status
- Sent Today {{ $quotationToday }}
- Pending Approval {{ $quotationPending }}
- Approved {{ $quotationApproved }}
- Converted Orders {{ $quotationConverted }}
Recent Orders
| Order | Customer | Total | Status | Date |
|---|---|---|---|---|
| #{{ $order->order_number }} | {{ $order->user->name ?? '-' }} | ₹ {{ number_format($order->total,2) }} | {{ ucfirst($order->status) }} | {{ $order->created_at->format('d M Y') }} |
Activity Feed
-
@foreach($activities as $activity)
-
{{ $activity->description }}
{{ $activity->created_at->diffForHumans() }}
@endforeach