In a Laravel 10 project:
php artisan make:auth
This created User model, but nothing else.
Than I published:
php artisan vendor:publish --tag=laravel-auth
Which outputs:
No publishable resources for tag
I don’t see a view or route for authentication. What am I missing?
2
Answers
In Laravel 10, I solved by installing Breeze:
And than:
I think you should read the Laravel 10 doc about Authentication https://laravel.com/docs/10.x/authentication and use a starter kit or Fortify