skip to Main Content

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


  1. Chosen as BEST ANSWER

    In Laravel 10, I solved by installing Breeze:

    composer require laravel/breeze --dev
    

    And than:

    php artisan breeze:install blade
    

  2. 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search