PHPackages                             lara-zeus/chaos - 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. lara-zeus/chaos

ActiveLibrary

lara-zeus/chaos
===============

3.0.0(2mo ago)35.4k1[2 PRs](https://github.com/lara-zeus/chaos/pulls)3MITPHPPHP ^8.1CI passing

Since Mar 3Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/lara-zeus/chaos)[ Packagist](https://packagist.org/packages/lara-zeus/chaos)[ Docs](https://larazeus.com)[ GitHub Sponsors](https://github.com/atmonshi)[ RSS](/packages/lara-zeus-chaos/feed)WikiDiscussions 3.x Synced 1mo ago

READMEChangelog (10)Dependencies (26)Versions (29)Used By (3)

Chaos
=====

[](#chaos)

> Chaos is the mythological void state preceding the creation of the universe.

[![](https://camo.githubusercontent.com/86842f27f1fd198b3578db216b964c00e98c491a3ed11b4d255c949fcc0be6e0/68747470733a2f2f6c6172617a6575732e636f6d2f696d616765732f6c6172612d7a6575732d6368616f732e776562703f763d33)](https://larazeus.com)

[![Latest Version on Packagist](https://camo.githubusercontent.com/e60148104eab312fb391be6f65da0120d79d639722cd108c1322fd5287ed295d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c6172612d7a6575732f6368616f732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/lara-zeus/chaos)[![Tests](https://camo.githubusercontent.com/eb0c128860d046fb28968dac88ac5b60dec035da6c888dfc6ccf65c0e5ff8247/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6c6172612d7a6575732f6368616f732f72756e2d74657374732e796d6c3f6c6162656c3d7465737473267374796c653d666c61742d737175617265266272616e63683d312e78)](https://github.com/lara-zeus/chaos/actions?query=workflow%3Arun-tests+branch%3A1.x)[![Code Style](https://camo.githubusercontent.com/70dfdc02b9fa49856a8986f642f5db853ddfd71dd2f42f2a6e8f1752169cceef/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6c6172612d7a6575732f6368616f732f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6c6162656c3d636f64652d7374796c6526666c61742d737175617265)](https://github.com/lara-zeus/chaos/actions?query=workflow%3Afix-php-code-style-issues+branch%3A1.x)[![Total Downloads](https://camo.githubusercontent.com/fa08a1bf0a9a6c99ae9451100bcd1128c189ace49d534dec275736c31c6fab35/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c6172612d7a6575732f6368616f732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/lara-zeus/chaos)[![Total Downloads](https://camo.githubusercontent.com/b012f388fdefa0604aeb1e723c384744a4e6c6018bd1f608d248cb8b3a7089db/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6c6172612d7a6575732f6368616f733f7374796c653d666c61742d737175617265)](https://github.com/lara-zeus/chaos)

*💖 if you think this has potential, star ⭐️ the project to let me know :)*

Support Filament
----------------

[](#support-filament)

[![filament-logo](https://camo.githubusercontent.com/58519de44f8b826c9af69864f6cd5e713a765061515e76c4705b09c9a6a715a5/68747470733a2f2f6c6172617a6575732e636f6d2f696d616765732f66696c616d656e742d73706f6e736f722d62616e6e65722e77656270)](https://github.com/sponsors/danharrin)Opinionated Filament Setup
==========================

[](#opinionated-filament-setup)

provide extra layer between you app and Filament, dont worry about generic column like timestamps and stuff.

and some more perks, more details coming soon.

Installation:
-------------

[](#installation)

```
composer require lara-zeus/chaos
```

### `ChaosModel` trait:

[](#chaosmodel-trait)

- add action by
- checks for `isUsingActionBy` and `isUsingSoftDelete`

### 'ChaosResource' to extend all resources

[](#chaosresource-to-extend-all-resources)

- set lang file per resource
- set the Model Label and Plural Model Label
- add the soft delete scope
- lazy load the actions by relations

### `ChaosForms` class

[](#chaosforms-class)

- all forms will have the same looks and functionalty
- add a side column for timestamps and action by
- you can add side section
- usage:

```
public static function form(Form $form): Form
{
    return ChaosForms::make($form, [
        Section::make()
            ->columnSpanFull()
            ->columns()
            ->schema([
                //
            ]),
    ]);
}
```

### ChaosInfos

[](#chaosinfos)

### ChaosTables

[](#chaostables)

- add timestamps columns, hidden by default
- add actions by with popover for user info
- add all defualt actions per row
    - view
    - edit
    - delete
    - force delete
    - restore
- add soft delete filters
- set pagination 25
- set default sort by id desc
- set bulk actions
- usage:

```
public static function table(Table $table): Table
{
    return ChaosTables::make(
        static::class,
        $table,
        columns:[
            //
        ],
        actions: [
            //
        ],
        bulkActions: [
            //
        ],
        filters: [
            //
        ]
    );
}
```

### `ChaosEditRecord` class

[](#chaoseditrecord-class)

- add header actions:
    - view and delete

### `ChaosListRecords` class

[](#chaoslistrecords-class)

- add header actions:
    - create

### `ChaosViewRecord` class

[](#chaosviewrecord-class)

- add header actions:
    - edit

###  Health Score

51

—

FairBetter than 96% of packages

Maintenance88

Actively maintained with recent releases

Popularity26

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 78.8% 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 ~28 days

Recently: every ~52 days

Total

27

Last Release

67d ago

Major Versions

v1.0.20 → 2.0.02025-06-11

1.x-dev → 2.0.12025-10-21

2.x-dev → 3.x-dev2026-03-10

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1952412?v=4)[Lara Zeus](/maintainers/atmonshi)[@atmonshi](https://github.com/atmonshi)

---

Top Contributors

[![atmonshi](https://avatars.githubusercontent.com/u/1952412?v=4)](https://github.com/atmonshi "atmonshi (82 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (12 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (8 commits)")[![aymanalhattami](https://avatars.githubusercontent.com/u/34315778?v=4)](https://github.com/aymanalhattami "aymanalhattami (2 commits)")

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/lara-zeus-chaos/health.svg)

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

###  Alternatives

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[awcodes/filament-quick-create

Plugin for Filament Admin that adds a dropdown menu to the header to quickly create new items.

246177.6k7](/packages/awcodes-filament-quick-create)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

81158.7k4](/packages/stephenjude-filament-two-factor-authentication)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

5925.8k](/packages/marcelweidum-filament-passkeys)

PHPackages © 2026

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