Last active
August 11, 2021 23:09
-
-
Save patrickcurl/c4bb27b827475b77c434b35c4f1bd3cd to your computer and use it in GitHub Desktop.
Laravel Breeze Auth Tutorial
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
laravel new breezy-login | |
cd breezy-login | |
composer require laravel/breeze | |
php artisan breeze:install vue | |
# Or... | |
php artisan breeze:install react | |
npm install | |
npm run dev | |
php artisan migrate | |
# I also like to run vendor/publish and choose option 0 for publish all, this way I can override and control more in my application. | |
php artisan vendor:publish --all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment