@php
$lang = app()->getLocale();
$isRtl = $lang === 'ar';
$isHomePage = Route::currentRouteName() === 'site.index';
@endphp
@yield('title', 'BkamThis')
@if ($isRtl)
@else
@endif
@stack('css_before')
@if ($isRtl)
@endif
@stack('css')
@include('front.includes.analytics')
@stack('css_after')
@include('front.includes.header')
@yield('content')
@include('front.includes.footer')
@stack('js_before')
@include('front.includes.app-scripts')
@stack('js')
@include('admin.layouts.toastr')
@stack('js_after')