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.
You may use Composer to install Jetstream into your new Laravel project:
composer require laravel/jetstream
After installing the Jetstream package, you may execute the jetstream:install Artisan command. This command accepts the name of the stack you prefer (livewire or inertia). In addition, you may use the --teams switch to enable team support. The jetstream:install command will also install a suite of "feature" tests that provide test coverage for the features provided by Jetstream.
You are highly encouraged to read through the entire documentation of Livewire or Inertia before beginning your Jetstream project.
php artisan jetstream:install livewire
php artisan jetstream:install livewire --teams
php artisan jetstream:install inertia
php artisan jetstream:install inertia --teams
After installing Jetstream, you should install and build your NPM dependencies and migrate your database:
npm install
npm run dev
php artisan migrate
If you are using the Livewire stack, you should first publish the Livewire stack's Blade components:
php artisan vendor:publish --tag=jetstream-views
npm run dev or npm run watch
The MIT License (MIT). Please see License File for more information.