@php $isRtl = app()->getLocale() === 'ar'; $currentLocale = app()->getLocale(); $localeOptions = [ 'ar' => ['flag' => '🇸🇾', 'label' => 'العربية'], 'en' => ['flag' => '🇺🇸', 'label' => 'English'], 'tr' => ['flag' => '🇹🇷', 'label' => 'Türkçe'], ]; $activeLocale = $localeOptions[$currentLocale] ?? $localeOptions['ar']; @endphp