App Logo @if ($restaurant->show_logo_text) {{ $restaurant->name }} @endif
@if (languages()->count() > 1) @livewire('shop.languageSwitcher') @endif
@lang('app.toggleDarkMode')
@if ($restaurant->show_wifi_icon && $restaurant->wifi_name && $restaurant->wifi_password) @livewire('forms.wifi-button', ['restaurant' => $restaurant]) @endif
@livewire('forms.shopSelectBranchMobile', ['restaurant' => $restaurant, 'shopBranch' => $shopBranch])
    @if ($restaurant->allow_customer_orders)
  • @lang('menu.newOrder')
  • @endif @if (in_array('Table Reservation', $modules))
  • @lang('menu.bookTable')
  • @endif @if (!is_null(customer()))
  • @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('menu.profile')
  • @lang('app.logout')
  • @endif