PHPackages                             repat/cli-crud - 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. [Database &amp; ORM](/categories/database)
4. /
5. repat/cli-crud

ActiveLibrary[Database &amp; ORM](/categories/database)

repat/cli-crud
==============

CLI CRUD admin panel for Laravel, inspired by Filament and Nova

0.1(today)00MITPHPPHP ^8.4CI passing

Since Jun 26Pushed todayCompare

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

READMEChangelog (1)Dependencies (10)Versions (2)Used By (0)

repat/cli-crud
==============

[](#repatcli-crud)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f03fba52d050ff2dae676c46ef62c809eed771d712d512eba726d50cb96adf88/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f72657061742f636c692d637275642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/repat/cli-crud)[![Total Downloads](https://camo.githubusercontent.com/5a5dfbd3bac990409c7aed7841e7440aadd0e56119849d1a797f209bc5e35b27/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72657061742f636c692d637275642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/repat/cli-crud)[![Tests](https://camo.githubusercontent.com/55360c555c7758a2d1fa848846d40cf519cafe2dfdebb3db686c1c65d45dd164/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f72657061742f636c692d637275642f74657374732e796d6c3f7374796c653d666c61742d737175617265)](https://github.com/repat/cli-crud/actions/workflows/tests.yml)[![StyleCI](https://camo.githubusercontent.com/ad8e10edb4a1d20b4cc70e2d75c0e933858e2fcba13fefe901e92185f5d8e195/68747470733a2f2f696d672e736869656c64732e696f2f7374796c6563692f313236363138353138353f7374796c653d666c61742d737175617265)](https://styleci.io/repos/1266185185)[![License](https://camo.githubusercontent.com/502e17af078c601e57dff364f4c63589af4b75a61009a8210ae6fc13e87d1c47/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f72657061742f636c692d637275642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/repat/cli-crud)[![PHP Version](https://camo.githubusercontent.com/d61890cbc6f1c9ec812bd93d579bcda218f7a39279376d8f6b174a677347e4fe/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f72657061742f636c692d637275642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/repat/cli-crud)

[![Main screen](img/main-screen.png)](img/main-screen.png)

A **CLI CRUD admin panel** for Laravel, inspired by [Filament](https://filamentphp.com/) and [Laravel Nova](http://nova.laravel.com/). Built with [`laravel/prompts`](https://laravel.com/docs/13.x/prompts) and [`nunomaduro/termwind`](https://github.com/nunomaduro/termwind).

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

[](#requirements)

- PHP ^8.4
- Laravel 12.x | 13.x

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

[](#installation)

```
composer require repat/cli-crud
```

The service provider will be automatically registered.

Configuration
-------------

[](#configuration)

Publish the configuration file:

```
php artisan vendor:publish --tag=cli-crud-config
```

This will create `config/cli-crud.php`:

```
return [
    'resources' => [
        'path' => app_path('CliCrud/Resources'),
        'namespace' => 'App\\CliCrud\\Resources',
    ],
    'actions' => [
        'path' => app_path('CliCrud/Actions'),
        'namespace' => 'App\\CliCrud\\Actions',
    ],
    'pagination' => [
        'per_page' => 15,
        'relation_per_page' => 10,
    ],
    'authorization' => [
        'enabled' => false,
    ],
];
```

Usage
-----

[](#usage)

### Running the CLI

[](#running-the-cli)

```
php artisan cli-crud
```

This opens an interactive menu where you can:

- Select a resource (Model)
- List records (paginated)
- Search for records
- View record details
- Create new records
- Delete records (soft delete, force delete, restore)
- Run an action for (a) record(s)
- View custom cards &amp; charts for metrics
- View images ([kitty](https://sw.kovidgoyal.net/kitty/) and [iTerm](https://iterm2.com/documentation-images.html) protocol)

Screenshots
-----------

[](#screenshots)

[![Selection screen](img/selection-screen.png)](img/selection-screen.png)

Resources
---------

[](#resources)

See [docs/RESOURCES.md](docs/RESOURCES.md) for creating resources, the generated structure, auto-generated fields from a model, and available properties.

Fields
------

[](#fields)

See [docs/FIELDS.md](docs/FIELDS.md) for all field types, relations, and options.

Search
------

[](#search)

See [docs/SEARCH.md](docs/SEARCH.md) for declaring searchable fields, the `$search` override, and custom search engine integration.

Actions
-------

[](#actions)

See [docs/ACTIONS.md](docs/ACTIONS.md) for creating and attaching Nova-style actions, including queued and destructive variants.

Cards
-----

[](#cards)

See [docs/CARDS.md](docs/CARDS.md) for Chart, Image and Custom cards in the detail view.

Authorization
-------------

[](#authorization)

See [docs/AUTHORIZATION.md](docs/AUTHORIZATION.md) for enabling Laravel Gates/Policies integration.

Roadmap
-------

[](#roadmap)

- Dashboards
- Action log (audit trail)
- Plugins
- Export (CSV, JSON)
- TUI testing
- Code Cleanup

Testing
-------

[](#testing)

```
composer test
```

License
-------

[](#license)

MIT

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance100

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community6

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

Unknown

Total

1

Last Release

0d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/405dab243007488e7e7851422e5864a9312aee36058d60f1e6d623232c4d3131?d=identicon)[repat](/maintainers/repat)

---

Top Contributors

[![repat](https://avatars.githubusercontent.com/u/516807?v=4)](https://github.com/repat "repat (42 commits)")

---

Tags

clilaraveleloquentcrudadmin

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/repat-cli-crud/health.svg)

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

###  Alternatives

[laravel/ai

The official AI SDK for Laravel.

9782.1M162](/packages/laravel-ai)[spatie/laravel-health

Monitor the health of a Laravel application

87411.3M153](/packages/spatie-laravel-health)[kirschbaum-development/eloquent-power-joins

The Laravel magic applied to joins.

1.6k29.9M42](/packages/kirschbaum-development-eloquent-power-joins)[clickbar/laravel-magellan

This package provides functionality for working with the postgis extension in Laravel.

438834.4k1](/packages/clickbar-laravel-magellan)[itpathsolutions/dbstan

Database Standardization and Analysis Tool for Laravel

442.1k](/packages/itpathsolutions-dbstan)

PHPackages © 2026

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