26 lines
890 B
PHP
26 lines
890 B
PHP
<div class="flex items-center gap-2">
|
|
<a
|
|
href="{{ route('language.switch', 'ar') }}"
|
|
@class([
|
|
'text-sm px-2 py-1 rounded transition-colors min-h-[32px] flex items-center',
|
|
'bg-gold text-navy font-bold' => app()->getLocale() === 'ar',
|
|
'text-gold hover:text-gold-light' => app()->getLocale() !== 'ar',
|
|
])
|
|
data-test="language-switch-ar"
|
|
>
|
|
العربية
|
|
</a>
|
|
<span class="text-gold/50">|</span>
|
|
<a
|
|
href="{{ route('language.switch', 'en') }}"
|
|
@class([
|
|
'text-sm px-2 py-1 rounded transition-colors min-h-[32px] flex items-center',
|
|
'bg-gold text-navy font-bold' => app()->getLocale() === 'en',
|
|
'text-gold hover:text-gold-light' => app()->getLocale() !== 'en',
|
|
])
|
|
data-test="language-switch-en"
|
|
>
|
|
English
|
|
</a>
|
|
</div>
|