laravel-vue-starter
laravel-vue-starter copied to clipboard
Latest Laravel 11 and Vue 3 boilerplate using Tailwind 3, Sanctum, Fortify, Pinia, the new Vue3 Composition API
how i can split backend and frontend in two project ?
 run command : php artisan serve my .env config APP_URL=http://127.0.0.1:8000 SANCTUM_STATEFUL_DOMAINS=127.0.0.1:8000 SESSION_DOMAIN=localhost

I am getting the error CSRF token mismatch when registering a user.
after php artisan migrate success and db:seed succeess i just try login but console log display error 401 unauthorized. try register form new user success but login same 401 unauthorized
The current installation gives a `Class 'App\Manipulations' not found` on image uploads in profile. This is due Spatie\Image\Manipulations has been deprecated in v3 [v2](https://spatie.be/docs/image/v2/introduction): ->fit(Manipulations::FIT_FILL, 500, 300) [v3](https://spatie.be/docs/image/v3/introduction): ->fit(Fit::Fill, 500,...