auth in Laravel 8.x - what run in cmd line artisan
auth in Laravel 8.x - what run in cmd line artisan : this only: php artisan jetstream:install // is OK or needed additionally and more artisan commands ????
You can use any css you want. I only used jetstream to scaffold Authentication. But I still use blade views, bootstrap, and a bunch of custom css. You are not forced to use anything you don't want to use.
If you want bootstrap for pagination, it covered in the documentation:
Pagination
Pagination Defaults
Likelihood Of Impact: High
The paginator now uses the Tailwind CSS framework for its default styling. In order to keep using Bootstrap, you should add the following method call to the boot method of your application's AppServiceProvider:
use Illuminate\Pagination\Paginator;
Paginator::useBootstrap();
You are not required to use the authentication scaffolding included with Laravel Jetstream. If you choose to not use this scaffolding, you will need to manage user authentication using the Laravel authentication classes directly. Don't worry, it's a cinch!