@php use App\Models\User; use App\Models\Order; use App\Models\Brand; use App\Models\Category; use App\Models\Product; $totalUsers = User::count(); $totalOrders = Order::count(); $totalBrands = Brand::count(); $totalCategories = Category::count(); $totalProducts = Product::count(); @endphp
Total Users

{{ $totalUsers }}

Total Brands

{{ $totalBrands }}

Total Orders

{{ $totalOrders }}

Total Categories

{{ $totalCategories }}

Total Products

{{ $totalProducts }}