@extends('layouts.admin') @section('content')
{{-- Page Header --}}

Good {{ now()->hour < 12 ? 'morning' : (now()->hour < 17 ? 'afternoon' : 'evening') }} 👋

Dashboard Overview

Add Product
{{-- Stats Row --}}
Products {{ $totalProducts ?? 0 }}
Active
Orders {{ $totalOrders ?? 0 }}
Total
Customers {{ $totalCustomers ?? 0 }}
Users
Revenue à§³{{ number_format($totalRevenue ?? 0, 0) }}
BDT
{{-- Content Row --}}
{{-- Quick Actions --}} {{-- Recent Orders --}}

Recent Orders

View all →
@forelse($recentOrders ?? [] as $order) @empty @endforelse
Order Customer Amount Status Date
#{{ $order->id }} {{ $order->user->name ?? 'Guest' }} à§³{{ number_format($order->total, 0) }} {!! $order->status_badge !!} {{ $order->created_at->format('M d, Y') }}

No orders yet

{{-- end content-row --}}
@push('styles') @endpush @endsection