@php $currentLocale = app()->getLocale(); $currentLanguage = \App\Models\Language::where('code', $currentLocale)->where('is_active', true)->first(); $availableLanguages = \App\Models\Language::where('is_active', true)->orderBy('sort_order')->orderBy('name')->get(); @endphp