@php $currencySymbol = App\Models\AppSetting::getValue('currency_symbol', '₹'); $currencyDecimals = App\Models\AppSetting::currencyDecimals(); @endphp @php $appName = App\Models\AppSetting::getValue('app_name', 'Food Delivery'); $primaryColor = App\Models\AppSetting::getValue('primary_color', '#FF6B35'); $secondaryColor = App\Models\AppSetting::getValue('secondary_color', '#FF8C42'); $appFavicon = App\Models\AppSetting::getValue('app_favicon'); $faviconUrl = $appFavicon ? \Illuminate\Support\Facades\Storage::disk('public')->url($appFavicon) : asset('favicon.ico'); @endphp @yield('title', $appName) @yield('styles') @if(request()->routeIs('home') || request()->routeIs('restaurant.show'))
@if(session('delivery_location')) {{ session('delivery_location') }} @else Detect my location @endif
@endif
@yield('content')
@include('partials.web-visit-tracker', ['panel' => 'customer_web']) @yield('scripts') @include('partials.google-maps-shim')