diff --git a/resources/views/partials/mobile-bottom-nav.blade.php b/resources/views/partials/mobile-bottom-nav.blade.php index 9cea189..5fbdf50 100644 --- a/resources/views/partials/mobile-bottom-nav.blade.php +++ b/resources/views/partials/mobile-bottom-nav.blade.php @@ -15,13 +15,6 @@ if ($profileMenuItems === [] && $profileUrl !== '#') { $profileMenuItems = [['type' => 'link', 'label' => 'Profile', 'href' => $profileUrl]]; } - $walletBalanceRoute = (string) config('billing.wallet_balance_route', 'wallet.balance'); - $showWalletInSheet = \Illuminate\Support\Facades\Route::has($walletBalanceRoute) - || collect($profileMenuItems)->contains(fn (array $item): bool => ($item['type'] ?? '') === 'wallet'); - $sheetMenuItems = array_values(array_filter( - $profileMenuItems, - fn (array $item): bool => ($item['type'] ?? 'link') !== 'wallet' - )); $navActive = fn (bool $active) => $active ? 'text-indigo-600' : 'text-slate-600'; @endphp
Billing
- @include('partials.wallet-widget', [ - 'onNavigate' => 'profileOpen = false', - 'class' => 'mx-0', - ]) -