I have a laravel breeze app up and running using InertiaJS scaffolding. I’m using a middleware to pass general data to the layout. The issue is the following : A user can change the country, and if the country has changed, you have a different list of stores available. Not all stores are present at ..
Category : laravel-breeze
I want to customize laravel breeze’s login logic and users can login with username and mobile for example. in previous version of laravel, login logic uses AuthenticatesUser trait and I could override methods and customize easily , but now there is no trait and method to override what should I do now ? I search ..
From reading the Laravel docs, it appears that when using Sanctum Vue will just use the cookie-based authentication. I was trying to move an existing app (with login done using Livewire) to Vue, but calls direct to my first api endpoint were redirecting to the login page. So I created a clean installation of Larvel, ..

i’m using the original breeze(laravel 8) component error message in a view.blade form: <x-auth-validation-errors class="mb-4" /> <form action="{{ $action }}" method="post"> @csrf…. the problem is that the message block repeats when the view shows it: Do you know whats happening? i haven’t touched the breeze original components. Sourc..