PHPackages                             laravilt/schemas - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. laravilt/schemas

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

laravilt/schemas
================

Complete schema system with sections, tabs, grids, and layout components. Organize form fields and information displays with powerful layout components supporting collapsible sections, responsive grids, and nested schemas.

1.0.6(2mo ago)0685↓45.5%1[1 PRs](https://github.com/laravilt/schemas/pulls)3MITVuePHP ^8.3|^8.4CI passing

Since Dec 11Pushed 2mo agoCompare

[ Source](https://github.com/laravilt/schemas)[ Packagist](https://packagist.org/packages/laravilt/schemas)[ GitHub Sponsors](https://github.com/fadymondy)[ RSS](/packages/laravilt-schemas/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)Dependencies (14)Versions (8)Used By (3)

[![schemas](https://raw.githubusercontent.com/laravilt/schemas/master/arts/screenshot.jpg)](https://raw.githubusercontent.com/laravilt/schemas/master/arts/screenshot.jpg)

Laravilt Schemas
================

[](#laravilt-schemas)

[![Latest Stable Version](https://camo.githubusercontent.com/ded1317b168d9188f69928aa696759db99345037960d3b8d14b41992970ed312/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176696c742f736368656d61732f76657273696f6e2e737667)](https://packagist.org/packages/laravilt/schemas)[![License](https://camo.githubusercontent.com/b4a681943e13df35618953c7a16a9d2847989b8fd51a6fe0a8a3da1f61fc2182/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176696c742f736368656d61732f6c6963656e73652e737667)](https://packagist.org/packages/laravilt/schemas)[![Downloads](https://camo.githubusercontent.com/b4545e4c78169aec7555c2155fd6705476e56986f65e870c8bacca1c22b75c4c/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176696c742f736368656d61732f642f746f74616c2e737667)](https://packagist.org/packages/laravilt/schemas)[![Dependabot Updates](https://github.com/laravilt/schemas/actions/workflows/dependabot/dependabot-updates/badge.svg)](https://github.com/laravilt/schemas/actions/workflows/dependabot/dependabot-updates)[![PHP Code Styling](https://github.com/laravilt/schemas/actions/workflows/fix-php-code-styling.yml/badge.svg)](https://github.com/laravilt/schemas/actions/workflows/fix-php-code-styling.yml)[![Tests](https://github.com/laravilt/schemas/actions/workflows/tests.yml/badge.svg)](https://github.com/laravilt/schemas/actions/workflows/tests.yml)

Complete schema system with sections, tabs, grids, and layout components for Laravilt. Organize form fields and information displays with powerful layout components.

Features
--------

[](#features)

- 📦 **8 Layout Components** - Section, Tabs, Grid, Fieldset, Split, Wizard, Step, Columns
- 🎨 **Section Features** - Collapsible, icons, headers, footers, aside layout
- 📑 **Tab Features** - Multiple tabs, icons, badges, lazy loading
- 📐 **Grid Features** - 1-12 column layouts, responsive spans
- ⚡ **Reactivity** - Conditional visibility, dynamic fields, state management
- 🔄 **Nested Schemas** - Support for deeply nested layouts

Layout Components
-----------------

[](#layout-components)

ComponentDescription`Section`Collapsible sections with headings and icons`Tabs`Tabbed interfaces with badges`Grid`Responsive multi-column layouts`Fieldset`HTML fieldset grouping`Split`Two-column responsive layouts`Wizard`Multi-step form workflows`Step`Individual wizard steps`Columns`Simple two-column wrapperQuick Examples
--------------

[](#quick-examples)

### Section with Columns

[](#section-with-columns)

```
use Laravilt\Schemas\Components\Section;
use Laravilt\Forms\Components\TextInput;

Section::make('Product Information')
    ->description('Basic product details')
    ->icon('Package')
    ->columns(2)
    ->collapsible()
    ->schema([
        TextInput::make('name')->required(),
        TextInput::make('sku')->required(),
        TextInput::make('price')->numeric()->prefix('$'),
        TextInput::make('stock')->numeric(),
    ]);
```

### Tabs

[](#tabs)

```
use Laravilt\Schemas\Components\Tabs;
use Laravilt\Schemas\Components\Tab;

Tabs::make('product_tabs')
    ->tabs([
        Tab::make('details')
            ->label('Details')
            ->icon('FileText')
            ->schema([...]),

        Tab::make('pricing')
            ->label('Pricing')
            ->icon('DollarSign')
            ->badge(fn ($record) => $record?->has_discount ? 'Sale' : null)
            ->schema([...]),
    ]);
```

### Wizard

[](#wizard)

```
use Laravilt\Schemas\Components\Wizard;
use Laravilt\Schemas\Components\Step;

Wizard::make()
    ->steps([
        Step::make('account')
            ->label('Account')
            ->icon('User')
            ->schema([...]),

        Step::make('profile')
            ->label('Profile')
            ->icon('Settings')
            ->schema([...]),
    ])
    ->skippable();
```

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

[](#installation)

```
composer require laravilt/schemas
```

Generator Command
-----------------

[](#generator-command)

```
php artisan make:schema ProductSchema
```

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

[](#documentation)

- **[Complete Documentation](docs/index.md)** - All layout components and features
- **[MCP Server Guide](docs/mcp-server.md)** - AI agent integration

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance83

Actively maintained with recent releases

Popularity18

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 85.4% 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.

###  Release Activity

Cadence

Every ~12 days

Recently: every ~18 days

Total

7

Last Release

84d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2147eb2fca7ab5f0124d0fafd88ba2d2a5dfa3a0036fb8872d1084b7cba29366?d=identicon)[fadymondy](/maintainers/fadymondy)

---

Top Contributors

[![fadymondy](https://avatars.githubusercontent.com/u/11937812?v=4)](https://github.com/fadymondy "fadymondy (35 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![swarakaka](https://avatars.githubusercontent.com/u/9349190?v=4)](https://github.com/swarakaka "swarakaka (2 commits)")[![actions-user](https://avatars.githubusercontent.com/u/65916846?v=4)](https://github.com/actions-user "actions-user (1 commits)")

---

Tags

laravelinertiasectionsvuetabsgridsschemaslayoutslaraviltorganization

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/laravilt-schemas/health.svg)

```
[![Health](https://phpackages.com/badges/laravilt-schemas/health.svg)](https://phpackages.com/packages/laravilt-schemas)
```

###  Alternatives

[ijpatricio/mingle

Use Vue and React in Laravel Livewire Applications.

43445.4k2](/packages/ijpatricio-mingle)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[vildanbina/livewire-tabs

Laravel Livewire Tab Form component

504.6k](/packages/vildanbina-livewire-tabs)

PHPackages © 2026

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