@php $activeMenu = $activeMenu ?? ''; $activeFavoritesTab = $activeFavoritesTab ?? ''; $primaryItems = [ [ 'label' => 'Sell', 'route' => route('panel.listings.create'), 'key' => 'create', ], [ 'label' => 'My Listings', 'route' => route('panel.listings.index'), 'key' => 'listings', ], [ 'label' => 'Videos', 'route' => route('panel.videos.index'), 'key' => 'videos', ], [ 'label' => 'Inbox', 'route' => route('panel.inbox.index'), 'key' => 'inbox', ], [ 'label' => 'My Profile', 'route' => route('panel.profile.edit'), 'key' => 'profile', ], ]; $favoriteItems = [ [ 'label' => 'Saved Listings', 'route' => route('favorites.index', ['tab' => 'listings']), 'key' => 'listings', ], [ 'label' => 'Saved Searches', 'route' => route('favorites.index', ['tab' => 'searches']), 'key' => 'searches', ], [ 'label' => 'Saved Sellers', 'route' => route('favorites.index', ['tab' => 'sellers']), 'key' => 'sellers', ], ]; $favoritesActive = $activeMenu === 'favorites' || $activeFavoritesTab !== ''; @endphp