Authenticate users

1

You see, I'm trying to make a user authentication system with Laravel. For this, I'm supposed to write this code in CMD: php artisan make:auth and that will make me see the following:

But even though I get a confirmation message ( Authentication scaffolding generated successfully ), the image does not appear. Where do I go to see her?

    
asked by Miguel Alparez 21.01.2018 в 12:24
source

2 answers

3

You put

php artisan serve

and it tells you how to see your screen.

    
answered by 21.01.2018 / 16:30
source
1

The php artisan make:auth command creates you model, driver and path for user authentication and registration.

And the php artisan serve command launches the server.

For Laravel (Laravel is an open source framework to develop web applications and services with PHP), the server should always be working properly, it is obvious but sometimes we forget how easy it is.

    
answered by 01.02.2018 в 10:52