xxxxxxxxxx
# install laravel - you can use spesific version like [laravel/laravel:9.x]
composer create-project laravel/laravel example-app
cd example-app
php artisan vendor:publish --tag=laravel-notifications
php artisan vendor:publish --tag=laravel-mail
php artisan vendor:publish --tag=laravel-errors
# install jetstream - you can use spesific version like [laravel/jetstream:2.x]
composer require laravel/jetstream
php artisan jetstream:install inertia
php artisan vendor:publish --provider="Laravel\Fortify\FortifyServiceProvider"
npm install
npm run dev
# required helpfull packages
composer require bensampo/laravel-enum
composer require intervention/image
composer require monolog/monolog
composer require silviolleite/laravelpwa
php artisan vendor:publish --provider="LaravelPWA\Providers\LaravelPWAServiceProvider"
xxxxxxxxxx
/* Step 1 */
composer require laravel/jetstream
/* step 2 */
php artisan jetstream:install livewire
php artisan jetstream:install livewire --teams
/* step 3 */
create a atabase table and enter the table name in your .env file
/* step 4 */
npm install
npm run dev
php artisan migrate
xxxxxxxxxx
php artisan jetstream:install inertia
php artisan jetstream:install inertia --teams
xxxxxxxxxx
# follow the below link
https://www.techiediaries.com/laravel-8-auth-scaffolding-jetstream-inertiajs-livewire/
xxxxxxxxxx
Laravel Jetstream is a beautifully designed application starter kit for Laravel and provides the perfect starting point for your next Laravel application. Jetstream provides the implementation for your application's login, registration, email verification, two-factor authentication, session management, API via Laravel Sanctum, and optional team management features.
Jetstream is designed using Tailwind CSS and offers your choice of Livewire or Inertia scaffolding.