@extends('admin.layouts.app') @section('title', 'Dashboard') @section('content') {{-- Show full dashboard stats only to super_admin and admin --}} @if(auth()->user()->hasAnyRole(['super_admin', 'admin']))

Total Products

{{ $totalProducts }}

Total Categories

{{ $totalCategories }}

Total Orders

{{ $totalOrders }}

Total Revenue

{{ format_price($totalRevenue) }}

@endif

Quick Links

Add New Product Add New Category {{-- Show advanced options only to super_admin and admin --}} @if(auth()->user()->hasAnyRole(['super_admin', 'admin'])) Manage Hero Slider View Orders @endif
@endsection