Reference

Laravel Reference

Migrate the Database

One last thing you should do is migrate the database. Even if you haven't created any migrations, Laravel comes with a migration for the User model. So all you have to do is:

php artisan migrate

This will create a users table that you'll need for authentication.