PHPackages                             super-admin-org/super-admin - 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. [Admin Panels](/categories/admin)
4. /
5. super-admin-org/super-admin

ActiveLibrary[Admin Panels](/categories/admin)

super-admin-org/super-admin
===========================

super-admin. Open-source Laravel Admin panel. No pro or paid package, free &amp; open. Based on laravel-admin, with special thanks to z-song and open admin

v1.2.1(1mo ago)21.3k↓12.5%8MITPHPPHP ^8.2CI passing

Since Jun 8Pushed 1mo agoCompare

[ Source](https://github.com/super-admin-org/super-admin)[ Packagist](https://packagist.org/packages/super-admin-org/super-admin)[ Docs](https://github.com/super-admin-org/super-admin)[ GitHub Sponsors](https://github.com/talemul)[ RSS](/packages/super-admin-org-super-admin/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (18)Versions (29)Used By (8)

[![super-admin](https://camo.githubusercontent.com/8fcced6b818403ac1a7071dadbfed8346f60cc8924abf0285edeaab5c4b586a1/68747470733a2f2f73757065722d61646d696e2e6f72672f6766782f6c6f676f2e706e67)](https://super-admin.org/)

`super-admin` is an administrative interface builder for Laravel which can help you build CRUD backends with just a few lines of code.

[Homepage](https://super-admin.org) | [Documentation](docs/index.md) | [GitHub](https://github.com/super-admin-org/super-admin) | [Extensions](https://github.com/super-admin-org?tab=repositories)

 [![Tests](https://github.com/super-admin-org/super-admin/actions/workflows/run-tests.yml/badge.svg)](https://github.com/super-admin-org/super-admin/actions) [![Code Style](https://github.com/super-admin-org/super-admin/actions/workflows/fix-php-code-style-issues.yml/badge.svg)](https://github.com/super-admin-org/super-admin/actions) [![Latest Version](https://camo.githubusercontent.com/25149ebe4364eb9cb63cb21f1300cf2397fe29a4c59cbe756654b2b7d701814b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73757065722d61646d696e2d6f72672f73757065722d61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/super-admin-org/super-admin) [![Total Downloads](https://camo.githubusercontent.com/e071647eb9846b0a26ad1bf1fef86c9bd6b52a49ca98f865f4b6f5af6df70d04/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73757065722d61646d696e2d6f72672f73757065722d61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/super-admin-org/super-admin) [![License](https://camo.githubusercontent.com/2c4b881deca9b629478d51bbe9164f4c699606a624f403a9e63b2ecc48c0c673/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f73757065722d61646d696e2d6f72672f73757065722d61646d696e2e7376673f7374796c653d666c61742d73717561726526636f6c6f723d627269676874677265656e)](https://packagist.org/packages/super-admin-org/super-admin)

 Forked from [Laravel-admin](https://github.com/z-song/laravel-admin) &amp; [Open-admin](https://github.com/open-admin-org/open-admin). Much thanks to Z-song and the open-admin team for their effort and great setup!

 Both upstream projects are no longer maintained and remain incompatible with Laravel 11+. This repository continues the work to support **Laravel 10, 11, 12, and 13**.

---

Compatibility
-------------

[](#compatibility)

LaravelPHPStatus13.x8.3, 8.4Supported12.x8.2, 8.3, 8.4Supported11.x8.2, 8.3, 8.4Supported10.x8.2, 8.3SupportedFeatures
--------

[](#features)

- **Model Grid** - Data tables with sorting, filtering, inline editing, export, and batch actions
- **Model Form** - 60+ field types, validation, tabs, file uploads, and relationship management
- **Model Show** - Detail pages with panels and relation display
- **Model Tree** - Hierarchical/nested data with drag-and-drop ordering
- **RBAC** - Built-in users, roles, and permissions management
- **Operation Log** - Audit trail for all admin actions
- **Menu Management** - Sidebar menu with drag-and-drop ordering
- **Widgets** - Box, Tab, Table, InfoBox, Collapse, Alert, Carousel, and more
- **Extension System** - 12+ official plugins available
- **19 Artisan Commands** - Scaffolding, user management, and code generation
- **Responsive UI** - Built on Bootstrap 5

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

[](#installation)

> Requires PHP 8.2+ and Laravel 10.0 or higher.

```
composer require super-admin-org/super-admin
```

Publish assets and config:

```
php artisan vendor:publish --provider="SuperAdmin\Admin\AdminServiceProvider"
```

After running the command you can find the config file in `config/admin.php`, where you can change the install directory, database connection, or table names.

Run the installer:

```
php artisan admin:install
```

Open `http://localhost/admin/` in your browser. Login with username `admin` and password `admin`.

Updating
--------

[](#updating)

```
composer update super-admin-org/super-admin
php artisan vendor:publish --tag=super-admin-assets --force
```

Quick Start
-----------

[](#quick-start)

```
# 1. Create a model
php artisan make:model Post -m

# 2. Generate an admin controller
php artisan admin:controller \\App\\Models\\Post

# 3. Add route in app/Admin/routes.php
#    $router->resource('posts', PostController::class);

# 4. Add menu item at /admin/auth/menu with URI "posts"
```

That's it! Full CRUD interface with grid, form, filters, and detail page.

---

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

[](#documentation)

Comprehensive documentation is available in the **[`docs/`](docs/index.md)** directory with 28 pages covering every feature of the package.

### Getting Started

[](#getting-started)

PageDescription**[Installation](docs/installation.md)**Step-by-step setup, database tables, troubleshooting**[Quick Start](docs/quick-start.md)**Build your first CRUD in 5 minutes with scaffolding**[Configuration](docs/configuration.md)**Complete config reference - auth, upload, layout, map, and more**[Upgrading](docs/upgrading.md)**Version upgrades, migration from open-admin/laravel-admin### Model Grid (Data Tables)

[](#model-grid-data-tables)

PageDescription**[Basic Usage](docs/model-grid.md)**Create grids, add columns, query data, pagination, relationships**[Column Usage](docs/model-grid-column.md)**Width, color, sorting, help text, hide, string/collection operations**[Column Display](docs/model-grid-column-display.md)**20+ display formatters: image, label, badge, bool, progress, link, QR code, copyable, secret, modal, expand**[Filters](docs/model-grid-filters.md)**17 filter types (equal, like, between, gt/lt, date, where...) with select, radio, checkbox, datetime presenters**[Inline Editing](docs/model-grid-inline-edit.md)**Edit data directly in the grid: editable text, switch, select, radio, checkbox**[Row &amp; Batch Actions](docs/model-grid-actions.md)**Custom row actions, batch operations, dropdown/context menu styles**[Data Export](docs/model-grid-export.md)**CSV/Excel export, custom exporters**[Grid Tools](docs/model-grid-tools.md)**Header, footer, total row, quick search, quick create, hot keys, column selector### Model Form (Data Entry)

[](#model-form-data-entry)

PageDescription**[Basic Usage](docs/model-form.md)**Create forms, tools, footer, ignore fields, detect state**[Form Fields](docs/model-form-fields.md)****60+ field types**: text, select, radio, checkbox, date/time, file, image, editor, tags, color, map, key-value, table, switch, belongs-to, has-many, embeds, and more**[Validation](docs/model-form-validation.md)**Laravel validation rules, custom messages, creation/update rules, unique constraints**[Image/File Upload](docs/model-form-upload.md)**Storage config, thumbnails, naming, cloud storage, multiple files**[Callbacks](docs/model-form-callbacks.md)**Hooks: saving, saved, deleting, deleted, editing, submitted**[Layout](docs/model-form-layout.md)**Tabs, columns, rows, fieldsets, dividers, cascade groups, step forms### Model Show &amp; Tree

[](#model-show--tree)

PageDescription**[Model Show](docs/model-show.md)**Detail pages with panels, formatting, relations (one-to-one, one-to-many, many-to-many)**[Model Tree](docs/model-tree.md)**Hierarchical data with ModelTree trait, drag-and-drop ordering, select options### Admin Features

[](#admin-features)

PageDescription**[Permissions](docs/permissions.md)**RBAC system: users, roles, permissions, route binding, middleware, operation log**[Widgets](docs/widgets.md)**Box, InfoBox, Tab, Table, Collapse, Alert, Callout, Carousel, Form widget, page layout**[Console Commands](docs/commands.md)**19 Artisan commands: install, generate controller/form/action, create user, reset password, export seed**[CSS/JavaScript](docs/frontend.md)**Custom assets, inline scripts, theming, built-in libraries**[Extensions](docs/extensions.md)**Build and install extensions, official plugin list### Verification

[](#verification)

PageDescription**[Test Coverage Map](docs/test-coverage.md)**Every documented feature mapped to automated tests proving it works---

Extensions
----------

[](#extensions)

ExtensionDescriptionVersion[helpers](https://github.com/super-admin-org/helpers)Several tools to help you in development~1.0[media-manager](https://github.com/super-admin-org/media-manager)Web interface to manage local files~1.0[config](https://github.com/super-admin-org/config)Config manager for super-admin~1.0[grid-sortable](https://github.com/super-admin-org/grid-sortable)Sortable grids~1.0[CkEditor](https://github.com/super-admin-org/ckeditor)CkEditor for forms~1.0[api-tester](https://github.com/super-admin-org/api-tester)Test API calls from the admin~1.0[scheduling](https://github.com/super-admin-org/scheduling)Show and test your cron jobs~1.0[phpinfo](https://github.com/super-admin-org/phpinfo)Show PHP info in the admin~1.0[log-viewer](https://github.com/super-admin-org/log-viewer)Log viewer for Laravel~1.0.12[page-designer](https://github.com/super-admin-org/page-designer)Page designer to position items freely~1.0.18[reporter](https://github.com/super-admin-org/reporter)Developer-friendly exception viewer~1.0.18[redis-manager](https://github.com/super-admin-org/redis-manager)Redis manager for super-admin~1.0.20Contributing
------------

[](#contributing)

We are looking for active contributors:

- Testing
- Extension development
- Translating documentation
- Financing

Built With
----------

[](#built-with)

- [Laravel](https://laravel.com/) - [Bootstrap 5](https://getbootstrap.com/)
- [Axios](https://github.com/axios/axios) - [Font Awesome](http://fontawesome.io)
- [Choicesjs](https://github.com/Choices-js/Choices) - [Flatpickr](https://github.com/flatpickr/flatpickr)
- [Sweetalert2](https://github.com/sweetalert2/sweetalert2) - [Toastify](https://github.com/apvarun/toastify-js)
- [Sortablejs](https://github.com/SortableJS/Sortable) - [Nprogress](https://ricostacruz.com/nprogress/)
- [LeafletJS](https://leafletjs.com/) / [OpenStreetMaps](https://www.openstreetmap.org/)
- [Dual-Listbox](https://github.com/maykinmedia/dual-listbox/) - [Coloris](https://github.com/mdbassit/Coloris/)

License
-------

[](#license)

`super-admin` is licensed under [The MIT License (MIT)](LICENSE).

###  Health Score

49

—

FairBetter than 95% of packages

Maintenance90

Actively maintained with recent releases

Popularity20

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 61.1% 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 ~22 days

Recently: every ~52 days

Total

14

Last Release

50d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/055a97a569e21992ede85fb7eb0360c6320e424dee61d6ff5ed6ee66f700847f?d=identicon)[talemul](/maintainers/talemul)

---

Top Contributors

[![talemul](https://avatars.githubusercontent.com/u/6628982?v=4)](https://github.com/talemul "talemul (66 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (23 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (19 commits)")

---

Tags

laravelgridopenformadminfreeadmin-panelopen-adminSupersuper-admin

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/super-admin-org-super-admin/health.svg)

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

###  Alternatives

[open-admin-org/open-admin

open-admin. Open-source Laravel Admin panel. No pro or paid package, free &amp; open. Based on laravel-admin, with special thanks to z-song

28464.9k22](/packages/open-admin-org-open-admin)[encore/laravel-admin

laravel admin

11.2k3.1M444](/packages/encore-laravel-admin)

PHPackages © 2026

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