skip to Main Content

Laravel Inertia

I'm working on a project using Laravel with React and Inertia.js. After making changes to my components and routes, I'm unable to see them reflected in the browser. I've run the following commands to clear the caches: php artisan view:clear…

VIEW QUESTION

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