Skip to main content
Get Started

Install Capell into Laravel

Start small: install Capell, run the doctor command, open the Filament admin, and take one editable page through the full path before you move a whole site.

Last reviewed May 2026

capell.install
Composer Install core, admin, and frontend
Artisan Run installer, migrate, doctor
Public output Verify admin, frontend, cache
Path 01

Start a new Capell site

Use this when Capell is the CMS layer for a fresh Laravel application.

Terminal
composer create-project laravel/laravel capell-site
cd capell-site
composer require capell-app/core capell-app/admin capell-app/frontend
php artisan capell:install
npm run build
php artisan capell:doctor
  • Confirm the admin panel loads.
  • Confirm the frontend resolves the default site.
  • Confirm php artisan capell:doctor reports a healthy install.
Path 02

Add Capell to an existing Laravel app

Use this when you already have Laravel running and want Capell to manage editable site content without taking over the product.

Terminal
composer require capell-app/core capell-app/admin capell-app/frontend
php artisan capell:install
php artisan migrate
npm run build
php artisan capell:doctor
  • Review existing routes before handing public URLs to Capell.
  • Check your Vite build after package assets are published.
  • Use the doctor output as the post-install checklist.