@php $useRestaurantPosBrand = request()->routeIs(['home', 'restaurant_signup']); $landingBrandName = $useRestaurantPosBrand ? 'Restaurant POS' : global_setting()->name; @endphp {{-- FAVICONS --}} {{-- META TAGS --}} {{ $useRestaurantPosBrand ? $landingBrandName : (global_setting()->meta_title ?? global_setting()->name) }} @vite(['resources/css/app.css', 'resources/js/app.js']) @livewireStyles @include('sections.theme_style', [ 'baseColor' => global_setting()->theme_rgb, 'baseColorHex' => global_setting()->theme_hex, ]) @if (File::exists(public_path() . '/css/app-custom.css')) @endif {{-- Include file for widgets if exist --}} @includeIf('sections.custom_script_landing')
@yield('content') {{ $slot ?? '' }}
@stack('modals') @livewireScripts @include('layouts.update-uri') @include('layouts.service-worker-js') @include('sections.pusher-script') @stack('scripts')