Laravel Content-Administration

Get Started →

Laravel

Just integrate the package into existing projects and do a lot with little learning using your knowledge about Laravel standards.

Code Driven Configuration

Easy to deploy. Configure your Admin panel inside the code.

Infinitely Extendable

Extend the backend however you like using Blade or Vue components and packages.

Interface

# Editable Models In No Time

$form->image('profile_image')
    ->maxFiles(1)
    ->title('Profile Image')
    ->crop(3 / 4)
    ->width(4);

$form->group(function ($col) {
    $col->input('name')
        ->title('Name');

    $col->relation('department')
        ->title('Department');
})->width(2 / 3);

Interface