@php
/** @var string $locale */
$locale = session('locale', 'fr');
if (!in_array($locale, ['fr', 'en', 'ar'], true)) {
$locale = 'fr';
}
$isArabic = $locale === 'ar';
@endphp
@yield('title', 'Nails Salon')
@if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot')))
@vite(['resources/css/app.css', 'resources/js/app.js'])
@else
@endif
@stack('styles')
@yield('content')
@stack('scripts')