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.9.1(2w ago)111.6k6MITPHP

Since Feb 9Pushed 1mo agoCompare

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

READMEChangelog (10)Dependencies (47)Versions (86)Used By (6)

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

46

—

FairBetter than 92% of packages

Maintenance94

Actively maintained with recent releases

Popularity26

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 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

79

Last Release

15d 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 (687 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

[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)[october/rain

October Rain Library

1601.7M103](/packages/october-rain)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.8M672](/packages/shopware-core)[jolicode/castor

A lightweight and modern task runner. Automate everything. In PHP.

55344.7k5](/packages/jolicode-castor)[friendsoftypo3/content-blocks

TYPO3 CMS Content Blocks - Content Types API | Define reusable components via YAML

103574.3k69](/packages/friendsoftypo3-content-blocks)[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

12017.1k](/packages/rcsofttech-audit-trail-bundle)

PHPackages © 2026

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