This is a project based in the basic use of package jetstream of laravel. It uses the authentication based in jetstream and livewire.
(Assuming you've installed Laravel)
Fork this repository, then clone your fork, and run this in your newly created directory:
composer installNext you need to make a copy of the .env.example file and rename it to .env inside your project root.
Run the following command to generate your app key:
php artisan key:generateThen start your server:
php artisan serveNext config your database and use:
php artisan migrateoptional, you can use the seeds to generate fake data in the app:
php artisan migrate --seedOr:
php artisan db:seedNow you can use for the authentication package:
npm install && npm run devIf you need more information about laravel passport then you can read the documentation ([Laravel Jetstrean]https://laravel.com/docs/8.x/starter-kits#laravel-jetstream))
Your Laravel starter project is now up and running!
The Laravel framework and this project is open-sourced software licensed under the MIT license.