Login and register system in laravel using Jetstream
https://jetstream.laravel.com/2.x/introduction.html
npm install
- Config DB_DATABASE, DB_USERNAME and DB_PASSWORD in .env file (use MySQL database)
- Modify the file ./app/Providers/AppServiceProvider.php
- Add
use Illuminate\Support\Facades\Schema;
- Add
Schema::defaultstringLength(191);
into boot function
- Add
php artisan serve
composer require laravel/jetstream
php artisan jetstream:install livewire
npm run dev
php artisan migrate
php artisan serve