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.

Breeze Starter Kit

You can use the Laravel Breeze starter kit to give you a head start. Laravel Breeze is a minimal, simple implementation of all of Laravel's authentication features, including login, registration, password reset, email verification, and password confirmation. 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.

laravel new example-app
 
cd example-app
 
composer require protonemedia/laravel-splade-breeze
 
php artisan breeze:install

The breeze:install command will also build the frontend assets. Just like regular Laravel applications, you may run the Vite development server:

npm run dev