@extends('admin.layout.app') @section('title', 'Admin Dashboard') @section('content') @php $categoryCount = \DB::table('categories')->count(); $subcategoryCount = \DB::table('sub_categories')->count(); $productCount = \DB::table('products')->count(); $orderCount = \DB::table('orders')->count(); $userCount = \DB::table('users')->count(); $vendorCount = \DB::table('vendors')->count(); $couponCount = \DB::table('coupons')->count(); $schoolCount = \DB::table('schools')->count(); $registerCount = \DB::table('students')->count(); $compulsaryItemCount = \DB::table('compulsary_items')->count(); $addonCount = \DB::table('add_ons')->count(); @endphp