PHPackages                             inertia-studio/laravel-adapter - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. inertia-studio/laravel-adapter

ActiveLibrary

inertia-studio/laravel-adapter
==============================

Server-driven admin panels for Laravel + Inertia.js. Define forms, tables, and pages in PHP — render with React, Vue, or Svelte.

01↑2900%PHP

Since Apr 6Pushed 1mo agoCompare

[ Source](https://github.com/inertia-studio/laravel-adapter)[ Packagist](https://packagist.org/packages/inertia-studio/laravel-adapter)[ RSS](/packages/inertia-studio-laravel-adapter/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Inertia Studio — Laravel Adapter
================================

[](#inertia-studio--laravel-adapter)

Server-driven admin panels for Laravel + Inertia.js. Define forms, tables, and pages in PHP — render with React, Vue, or Svelte.

Installation
------------

[](#installation)

```
composer require inertia-studio/laravel-adapter
npm install @inertia-studio/ui
php artisan studio:install
```

Quick Example
-------------

[](#quick-example)

```
class Users extends Module
{
    protected static string $model = User::class;

    public static function form(Form $form): Form
    {
        return $form->schema([
            Layout::section('User Information')->columns(2)->schema([
                Field::text('name')->required(),
                Field::email('email')->required()->unique(),
                Field::select('role')->options([
                    'admin' => 'Admin',
                    'editor' => 'Editor',
                ]),
            ]),
        ]);
    }

    public static function table(Table $table): Table
    {
        return $table->columns([
            Column::text('name')->searchable()->sortable(),
            Column::badge('role')->colors(['admin' => 'danger']),
            Column::date('created_at')->label('Joined'),
        ]);
    }
}
```

What's Included
---------------

[](#whats-included)

**PHP Builders** — 30 field types, 8 column types, 5 filter types, 6 detail types, 24 page primitives

**Laravel Integration** — Auto-discovery, Eloquent query building, policy authorization, file uploads, global search, 7 Artisan commands

**Panel System** — Multi-panel support, 10 theme presets, dark mode, navigation groups with badges

**Page Builder** — Compose dashboards, settings pages, and analytics from PHP using `PageSchema` primitives with closure-based form/action handlers

Requirements
------------

[](#requirements)

- PHP 8.4+
- Laravel 12 or 13
- Inertia.js v3

Documentation
-------------

[](#documentation)

[inertia-studio.github.io](https://inertia-studio.github.io)

License
-------

[](#license)

MIT

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance60

Regular maintenance activity

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/34738295?v=4)[abdallahk](/maintainers/abdallahk)[@abdallahk](https://github.com/abdallahk)

---

Top Contributors

[![abdallahk](https://avatars.githubusercontent.com/u/34738295?v=4)](https://github.com/abdallahk "abdallahk (28 commits)")

### Embed Badge

![Health badge](/badges/inertia-studio-laravel-adapter/health.svg)

```
[![Health](https://phpackages.com/badges/inertia-studio-laravel-adapter/health.svg)](https://phpackages.com/packages/inertia-studio-laravel-adapter)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
