Laravel Breeze — Laravel 10 Discovery Training
In this new chapter we will explore again the authentication part and we will discover the Laravel Breeze starter kit. This starter kit will allow you to create actions and views corresponding to a user account system.
To use it you must first install the dependency
composer require laravel/breeze --dev
Then, you can generate the elements related to authentication (we can add the argument blade
to generate views with blade)
php artisan breeze:install blade
Attention, this starter kit must be used at the beginning of the project because it tends to overwrite files such as the route file web.php
.