PHPackages                             noerd/noerd - 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. noerd/noerd

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

noerd/noerd
===========

v0.6.16(1w ago)101.4k5MITPHP

Since Feb 9Pushed 1w agoCompare

[ Source](https://github.com/noerd-dev/noerd)[ Packagist](https://packagist.org/packages/noerd/noerd)[ RSS](/packages/noerd-noerd/feed)WikiDiscussions main Synced today

READMEChangelog (10)Dependencies (35)Versions (59)Used By (5)

noerd/noerd
===========

[](#noerdnoerd)

[![Total Downloads](https://camo.githubusercontent.com/b36bf5dc1df27afba9738096840610fef91883f1e2c3217e886c89deef036ee2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6f6572642f6e6f6572642e737667)](https://packagist.org/packages/noerd/noerd)[![Latest Stable Version](https://camo.githubusercontent.com/bafba888d2da9a800642f4a9ddff13197fa9d4c13ab2eb46cb1ef9f860752636/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f6572642f6e6f6572642e737667)](https://packagist.org/packages/noerd/noerd)

**Build admin panels and business apps for Laravel — without touching your production code.**Zero intrusion: no traits, no base classes, no boilerplate. Just YAML configs.

[![Noerd](https://camo.githubusercontent.com/642c9d03406dc92041ee14c96b039b0cb21279259ffc14178eca8a0bace33fff/68747470733a2f2f6e6f6572642e6465762f6173736574732f4e6f6572642e676966)](https://camo.githubusercontent.com/642c9d03406dc92041ee14c96b039b0cb21279259ffc14178eca8a0bace33fff/68747470733a2f2f6e6f6572642e6465762f6173736574732f4e6f6572642e676966)

For full documentation, visit [noerd.dev](https://noerd.dev).

Key Features
------------

[](#key-features)

- **Business Apps** – Build self-contained apps (Accounting, CMS, Booking, Production Planning, …) and assign them per tenant or per user
- **List Views** – Sortable, searchable, paginated tables — configured in a single YAML file ([list view](docs/list-view.md), [list filters](docs/list-filters.md), [list search](docs/list-search.md))
- **Detail Views** – Tabbed forms with embedded related lists, built-in validation, and dynamic field layouts ([detail view](docs/detail-view.md))
- **Smart Field Types** – Text, date, file, image, rich text, **relations**, and dynamic **picklists** ([field types](docs/field-types.md), [relation fields](docs/relation-field-types.md))
- **Setup Collections** – Manage lookup tables (categories, countries, templates) via YAML — no migrations or models required ([setup collections](docs/setup-collections.md))
- **Hierarchical Navigation** – Nested menu groups with Heroicons, defined in YAML ([navigation](docs/navigation.md))
- **Multi-Tenant Architecture** – Complete data isolation with per-tenant app assignment
- **Multi-Language** – Translation management baked in
- **UI Building Blocks** – Reusable [modal](docs/modal.md), [banner](docs/banner.md), and [quick menu](docs/quick-menu.md) components

Demo
----

[](#demo)

A hosted demo with two pre-installed apps (a Content Management System and a Study App):

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

[](#requirements)

- PHP 8.4+
- Laravel 12+
- Livewire 4+

Quickstart
----------

[](#quickstart)

```
# 1. Install the package
composer require noerd/noerd
php artisan noerd:install

# 2. Create a model and migration
php artisan make:model Customer -m

# 3. Generate list, detail, YAML configs, navigation entry, and routes
php artisan noerd:make-resource Customer
```

The installation wizard guides you through creating an admin user and an initial tenant.

### Recommended Configuration

[](#recommended-configuration)

If you don't want to configure `$guarded` on every model individually, unguard globally in your `AppServiceProvider`:

```
use Illuminate\Database\Eloquent\Model;

public function boot(): void
{
    Model::unguard();
}
```

YAML in Action
--------------

[](#yaml-in-action)

A full CRUD screen is two YAML files. No PHP, no Blade.

**`app-configs/demo/lists/customers-list.yml`**

```
title: Customers
actions:
  - label: New Customer
    action: listAction
columns:
  - field: name
    label: Name
  - field: company_name
    label: Company
  - field: email
    label: Email
  - field: city
    label: City
```

**`app-configs/demo/details/customer-detail.yml`**

```
title: Customer
fields:
  - name: detailData.name
    label: Name
    type: text
    colspan: 6
    required: true
  - name: detailData.email
    label: Email
    type: email
    colspan: 6
  - name: detailData.phone
    label: Phone
    type: text
    colspan: 6
```

Apps &amp; Navigation
---------------------

[](#apps--navigation)

Noerd is built around **apps** — each with its own navigation YAML and assignable per tenant.

```
# Create a new app
php artisan noerd:create-app

# Assign apps to tenants
php artisan noerd:assign-apps-to-tenant
```

See [creating apps](docs/create-app.md) and [all artisan commands](docs/artisan-commands.md).

Auto installed packages
-----------------------

[](#auto-installed-packages)

### Composer

[](#composer)

- `wireui/heroicons` — Heroicon SVG components
- `pestphp/pest` (dev) — Testing framework

### NPM

[](#npm)

- `@tiptap/core` — Rich text editor core

Installation as Submodule to contribute
---------------------------------------

[](#installation-as-submodule-to-contribute)

If you want to contribute to the development of Noerd, you can install it as a git submodule:

```
git submodule add git@github.com:noerd-dev/noerd.git app-modules/noerd
```

Then add a path repository and the package to your `composer.json`:

```
"repositories": [
    {
        "type": "path",
        "url": "app-modules/noerd",
        "options": {
            "symlink": true
        }
    }
],
"require": {
    "noerd/noerd": "*"
}
```

Then run:

```
composer update noerd/noerd
php artisan noerd:install
```

This way, you can make changes directly in `app-modules/noerd` and push them back to the Noerd repository.

###  Health Score

45

—

FairBetter than 91% of packages

Maintenance96

Actively maintained with recent releases

Popularity26

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity37

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.

###  Release Activity

Cadence

Every ~2 days

Total

55

Last Release

13d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8ede41d0ea3a95909f1e9a22b682a3b598e8b5c4244c0c1258e5a4ec238524bf?d=identicon)[noerd](/maintainers/noerd)

---

Top Contributors

[![johbrock](https://avatars.githubusercontent.com/u/19673317?v=4)](https://github.com/johbrock "johbrock (685 commits)")

###  Code Quality

TestsPest

### Embed Badge

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

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

###  Alternatives

[livewire/flux

The official UI component library for Livewire.

9527.8M127](/packages/livewire-flux)[brianhenryie/strauss

Prefixes dependencies namespaces so they are unique to your plugin

190438.1k36](/packages/brianhenryie-strauss)[venturedrake/laravel-crm

A free open source CRM built as a package for laravel projects

43311.1k](/packages/venturedrake-laravel-crm)[ramonrietdijk/livewire-tables

Dynamic tables for models with Laravel Livewire

21259.6k](/packages/ramonrietdijk-livewire-tables)[team-nifty-gmbh/tall-datatables

Server-side rendered datatables for Laravel and Livewire

1320.9k4](/packages/team-nifty-gmbh-tall-datatables)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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