Getting Started
Installation
Install Larasell in a Laravel application.
Installation
Larasell requires PHP 8.3 or newer and Laravel 13.23 or newer.
Install Larasell with Composer:
composer require larasell-dev/larasell
Larasell registers its service provider through Laravel package discovery. After installing the package, run the migrations:
php artisan migrate
Publishing files
The package loads its migrations automatically, so publishing them is optional. Publish the migrations when you want to customize the table structure before running them:
php artisan vendor:publish --tag=larasell-migrations
Publish the configuration file when you want to use custom model classes:
php artisan vendor:publish --tag=larasell-config
The configuration file will be published to config/larasell.php.
Optional admin panel
Larasell also ships an optional Inertia administration panel. It is not registered by default. See the admin panel guide when you want to opt in.