skip to Main Content

Locale not setting in Laravel 11 with Inertia.js

I am trying to set app locale in Laravel 11 with Inertia.js. Here is the links to set locale: <DropdownLink :href="route('set-language', { lang: 'lv' })"> <div class="flex items-center"> <img src="../../images/icons/latvian.png" :alt="$t('locales.lv')" height="25px" width="25px"> <span class="ml-2">{{ $t('locales.lv') }}</span> </div> </DropdownLink> <DropdownLink…

VIEW QUESTION
Back To Top
Search