In this episode, we're tackling a common confusion you might face with Laravel 12 and above: installing Breeze now that the official Laravel Installer doesn't offer it as a starter kit option out of the box.
Here's what we do step-by-step:
npm install
and npm run build
for now since Breeze isn't installed yet.composer require laravel/breeze --dev
) to pull in all the Breeze dependencies.php artisan breeze:install
to kick off the starter kit setup. Here, you'll pick your preferred stack (Blade, Inertia, etc.) and optional features, and even pick a testing framework.npm install
and npm run dev
to get your front-end dependencies all set up.We finish up by refreshing the browser and, voilà, Breeze is good to go with your Laravel 12 project—just follows these slightly new steps. It’s a quick update to your workflow, but everything you love about Breeze is still available!