You can use the Laravel Jetstream starter kit to give you a head start. Jetstream provides a beautifully designed application scaffolding for Laravel and includes login, registration, email verification, two-factor authentication, session management, API support via Laravel Sanctum, and optional team management. We maintain a fork with a Splade stack and keep it similar to the upstream as much as possible.
The installation process is similar to the Automatic Installation. Note that Jetstream for Splade requires Laravel 10.
laravel new example-app
cd example-app
composer require protonemedia/laravel-splade-jetstream
php artisan jetstream:install --teams --api --verification
The jetstream:install
command will also build the frontend assets. Just like regular Laravel applications, you may run the Vite development server:
npm run dev