App Logo @if ($restaurant->show_logo_text) {{ $restaurant->name }} @endif @livewire('forms.shopSelectBranch', ['restaurant' => $restaurant, 'shopBranch' => $shopBranch])
  • !request()->routeIs(['home']), 'dark:text-skin-base text-skin-base' => request()->routeIs(['home']), ]) aria-current="page">@lang('menu.home')
  • @if (in_array('Table Reservation', $modules))
  • !request()->routeIs(['book_a_table']), 'dark:text-skin-base text-skin-base' => request()->routeIs([ 'book_a_table', ]), ]) aria-current="page">@lang('menu.bookTable')
  • @endif
  • !request()->routeIs(['about']), 'dark:text-skin-base text-skin-base' => request()->routeIs(['about']), ]) aria-current="page">@lang('menu.about', [$restaurant->hash])
  • !request()->routeIs(['contact']), 'dark:text-skin-base text-skin-base' => request()->routeIs(['contact']), ]) aria-current="page">@lang('menu.contact', [$restaurant->hash])
@if ($showWaiterButtonCheck) @livewire('forms.callWaiterButton', ['tableNumber' => $table->id ?? null, 'shopBranch' => $shopBranch]) @endif
@lang('app.toggleDarkMode')
@if ($restaurant->show_wifi_icon && $restaurant->wifi_name && $restaurant->wifi_password) @livewire('forms.wifi-button', ['restaurant' => $restaurant]) @endif @if (isset($orderItemCount) && $orderItemCount > 0)
{{ $orderItemCount }}
@endif
@if (is_null(customer()) && $restaurant->customer_login_required) @lang('app.login') @endif @if (!is_null(customer()))
  • @lang('menu.profile')
  • @lang('menu.myAddresses')
  • @lang('menu.myOrders')
  • @php $showLoyaltyMenu = false; if (function_exists('module_enabled') && module_enabled('Loyalty') && function_exists('restaurant_modules') && in_array('Loyalty', restaurant_modules($restaurant))) { $loyaltySettings = \Modules\Loyalty\Entities\LoyaltySetting::getForRestaurant($restaurant->id); if ($loyaltySettings && $loyaltySettings->isEnabled()) { // Check if points or stamps are enabled for customer site $pointsEnabled = ($loyaltySettings->enable_points ?? false) && ($loyaltySettings->enable_points_for_customer_site ?? true); $stampsEnabled = ($loyaltySettings->enable_stamps ?? false) && ($loyaltySettings->enable_stamps_for_customer_site ?? true); $showLoyaltyMenu = $pointsEnabled || $stampsEnabled; } } @endphp @if ($showLoyaltyMenu)
  • @lang('loyalty::app.myLoyaltyAccount')
  • @endif @if (in_array('Table Reservation', $modules))
  • @lang('menu.myBookings')
  • @endif
  • @lang('app.logout')
@endif