@php $currentRoute = Route::currentRouteName(); $isHomePage = $currentRoute === 'dashboard.index' || request()->path() === 'user/dashboard'; // Page title mapping (matches mobile navigation and desktop sidebar) $pageTitles = [ 'wallet.index' => 'Core Wallet', 'deposit.index' => 'Add Money', 'deposit.confirm' => 'Add Money', 'withdraw.index' => 'Get Money', 'plans.index' => 'Mining Plan', 'goals.index' => 'Victory Rewards', 'targets.index' => 'Targets', 'referrals.index' => 'Invite System', 'referrals.claim-earnings' => 'Referral Earning', 'transactions.index' => 'Financial Records', 'notifications.index' => 'Notifications', 'profile.index' => 'Profile', 'support.index' => 'Technical Support', 'withdraw-security.index' => 'Get Money', 'settings.index' => 'Account Studio', ]; $pageTitle = $pageTitles[$currentRoute] ?? 'Dashboard'; @endphp