Welcome to my boring Breeze starter template. The template was made for me to always have a template with auth and templating already done. The project was created with the laravel new command for the Breeze template with React as the frontend stack.
Nothing really, just a starter template to have everything ready to go for when I need to develop something.
I added Laravel fortify but only using it for the two-factor authentication. Registration and other auth functionality remains the same, I however introduced action classes and moved the logic from the controllers to there. I also introduced request classes and moved the validation rules there.
To run the starter app locally, make the required changes to your .env file and run the following commands.
composer install
php artisan key:generate
php artisan migrate
npm install
npm run dev
php artisan serve