@php $navbar_language = collect($navbarLanguages); $currentLocale = app()->getLocale(); $currentLanguage = $navbar_language->firstWhere('code', $currentLocale); $isRtl = $currentLanguage['is_rtl'] ?? false; @endphp {!! SEOMeta::generate() !!} @yield('style') @if ($isRtl) @vite(['resources/js/app.js', 'resources/css/app.css', 'resources/css/rtl.css']) @else @vite(['resources/js/app.js', 'resources/css/app.css', 'resources/css/ltr.css']) @endif {{$header_code}} {{$google_analytics_code}} @include('partials.header') @yield('content') @if (!empty($ads) && !empty($ads[0]['before_footer_ad'])) @include('partials.horizontal-ad') @endif @include('partials.footer') @include('partials.coupon-modal')
@yield('scripts') {{$footer_code}}