xxxxxxxxxx
// How to install bootstrap in laravel
composer require laravel/ui
php artisan ui bootstrap
npm install && npm run dev
xxxxxxxxxx
composer require laravel/ui
php artisan ui bootstrap # to install the auth scaffoldings line 3 instead
php artisan ui bootstrap --auth
npm install
npm run dev
xxxxxxxxxx
composer require laravel/ui
php artisan ui bootstrap
php artisan ui bootstrap --auth
npm install
npm run dev
npm run production
xxxxxxxxxx
// How to install Auth in laravel
// With Boothstrap
composer require laravel/ui --dev
php artisan ui bootstrap --auth
npm install && npm run dev
xxxxxxxxxx
composer require laravel/ui
Use this command for Bootstrap without Auth
php artisan ui bootstrap
or
Use this command for Bootstrap with Auth
php artisan ui bootstrap --auth
npm install
npm run dev
or
npm run watch
or
npm run production