As of August 2024, Splade is no longer actively maintained. Though we will try to keep up with future Laravel and PHP versions, we discourage using Splade in new projects.

After a period of reflection, we've come full circle and decided to bring the magic of Splade back to Inertia, where it all started. Please check out this new chapter in our journey: Inertia UI.

Jetstream Starter Kit

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