PHPackages                             ziixdk/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. ziixdk/admin

ActiveLibrary[Admin Panels](/categories/admin)

ziixdk/admin
============

ziix-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 to Sjors Broersen

v4.0.2(1mo ago)0603[3 issues](https://github.com/ziixdk/admin/issues)2MITPHPPHP &gt;=8.3

Since Sep 30Pushed 4w agoCompare

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

READMEChangelog (3)Dependencies (24)Versions (38)Used By (2)

 [ ![ZiiX Admin](https://camo.githubusercontent.com/53ae23e1d115455642bd4fd2f9790227ffc3c82ded74b3a17f2f12920a8957d0/68747470733a2f2f7a6969782e65752f6f672d696d6167652d656e2e706e67) ](https://ziix.eu)

 Administrative interface builder for Laravel — build CRUD backends with just a few lines of code.

 [ ![Laravel 11+](https://camo.githubusercontent.com/88f899913475f23139b5d329c2c2620352073fcd6b41122050ec61e47bcaecfe/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d31312532422d7265643f7374796c653d666c61742d737175617265) ](https://github.com/ziixdk/admin) [ ![PHP 8.3+](https://camo.githubusercontent.com/93e348ca0701e914576dc85151a30f4673a5f6a2ad3add2ac638a409f57a0241/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e332532422d626c75653f7374796c653d666c61742d737175617265) ](https://github.com/ziixdk/admin) [ ![MIT License](https://camo.githubusercontent.com/34c7f4c1c2895232acdebade1612eadb742eb42d76f997b07bb0c73180e0cbbd/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f7a696978646b2f61646d696e2e7376673f7374796c653d666c61742d73717561726526636f6c6f723d627269676874677265656e) ](LICENSE)

---

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

[](#requirements)

- PHP &gt;= 8.3
- Laravel &gt;= 11.0
- Fileinfo PHP Extension

---

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

[](#installation)

```
composer require ziixdk/admin
```

Publish assets and config:

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

Run the installer:

```
php artisan admin:install
```

Open `http://localhost/admin/` — default login: `admin` / `admin`.

---

Updating
--------

[](#updating)

```
php artisan vendor:publish --tag=ziix-admin-assets --force
```

---

Quick Example
-------------

[](#quick-example)

```
// Grid (data table)
$grid = new Grid(User::class);
$grid->column('name')->sortable();
$grid->column('email');
$grid->filter(fn($f) => $f->like('name'));

// Form (create / edit)
$form = new Form(new User);
$form->text('name')->required();
$form->email('email')->required();
$form->select('role_id')->options(Role::pluck('name', 'id'));

// Show (detail page)
$show = new Show(User::find($id));
$show->field('name');
$show->field('email');
```

---

Artisan Commands
----------------

[](#artisan-commands)

```
php artisan admin:install           # First-time setup
php artisan admin:make ModelName    # Generate admin resource controller
php artisan admin:create-user       # Create an admin user
php artisan admin:reset-password    # Reset a user's password
php artisan admin:publish           # Re-publish assets and views
```

---

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

[](#configuration)

All options are in `config/admin.php`.

---

Extensions
----------

[](#extensions)

ExtensionInstallDescription[admin-ext-media-manager](https://packagist.org/packages/ziixdk/admin-ext-media-manager)`composer require ziixdk/admin-ext-media-manager`Web interface for local file management[admin-ext-ckeditor](https://packagist.org/packages/ziixdk/admin-ext-ckeditor)`composer require ziixdk/admin-ext-ckeditor`CKEditor rich text editor for forms---

Built with
----------

[](#built-with)

PackagePurpose[Bootstrap 5](https://getbootstrap.com/)CSS framework &amp; UI components[Alpine.js](https://alpinejs.dev/)Lightweight JS reactivity[Tom Select](https://tom-select.js.org/)Select / multiselect inputs[Flatpickr](https://flatpickr.js.org/)Date &amp; time pickers[SortableJS](https://sortablejs.github.io/Sortable/)Drag &amp; drop sorting[Leaflet](https://leafletjs.com/)Interactive maps[NProgress](https://ricostacruz.com/nprogress/)Page load progress bar[Coloris](https://github.com/mdbassit/Coloris/)Color picker[Font Awesome](https://fontawesome.com/)Icons[Axios](https://github.com/axios/axios)HTTP client[SweetAlert2](https://sweetalert2.github.io/)Confirm dialogs[Toastify](https://github.com/apvarun/toastify-js)Toast notifications[Choices.js](https://github.com/Choices-js/Choices)Enhanced select inputs[Inputmask](https://github.com/RobinHerbots/Inputmask)Input masking[Dual Listbox](https://github.com/maykinmedia/dual-listbox/)Dual listbox widget### PHP dependencies

[](#php-dependencies)

PackagePurpose[laravel/framework](https://laravel.com/) &gt;= 11Core framework[intervention/image](https://image.intervention.io/) ^3.8Image upload &amp; resize[doctrine/dbal](https://www.doctrine-project.org/projects/dbal.html) &gt;= 4.0Schema introspection[symfony/dom-crawler](https://symfony.com/doc/current/components/dom_crawler.html) &gt;= 7.0DOM parsing---

Credits
-------

[](#credits)

Forked from [open-admin](https://github.com/open-admin-org/open-admin) — thanks to Sjors Broersen. Originally forked from [laravel-admin](https://github.com/z-song/laravel-admin) — thanks to Z-song.

---

License
-------

[](#license)

ZiiX Admin is open-sourced software licensed under the [MIT License](LICENSE).

###  Health Score

53

—

FairBetter than 96% of packages

Maintenance93

Actively maintained with recent releases

Popularity17

Limited adoption so far

Community21

Small or concentrated contributor base

Maturity70

Established project with proven stability

 Bus Factor1

Top contributor holds 69.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 ~29 days

Recently: every ~3 days

Total

35

Last Release

29d ago

Major Versions

v1.0.0 → v2.0.12025-08-19

v2.0.4 → 3.0.02026-03-30

v3.0.24 → v4.0.02026-05-23

v3.0.26 → v4.0.22026-05-23

v3.0.29 → v4.x-dev2026-06-05

PHP version history (3 changes)v1.0.0PHP ~7.3|~8.0

v2.0.1PHP ^8.2

v2.0.2PHP &gt;=8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/7893468325a51f68568b884b8d486d1f0c04dce2cf768b6d6025dbd5434fb6e2?d=identicon)[ziix\_dk](/maintainers/ziix_dk)

---

Top Contributors

[![open-admin-org](https://avatars.githubusercontent.com/u/86517067?v=4)](https://github.com/open-admin-org "open-admin-org (196 commits)")[![rhurup](https://avatars.githubusercontent.com/u/43495471?v=4)](https://github.com/rhurup "rhurup (44 commits)")[![StyleCIBot](https://avatars.githubusercontent.com/u/11048387?v=4)](https://github.com/StyleCIBot "StyleCIBot (17 commits)")[![wishbone-productions](https://avatars.githubusercontent.com/u/23333413?v=4)](https://github.com/wishbone-productions "wishbone-productions (11 commits)")[![markc](https://avatars.githubusercontent.com/u/8134?v=4)](https://github.com/markc "markc (3 commits)")[![hirayama-onagigawa-computing](https://avatars.githubusercontent.com/u/21114536?v=4)](https://github.com/hirayama-onagigawa-computing "hirayama-onagigawa-computing (3 commits)")[![franzyke](https://avatars.githubusercontent.com/u/3132257?v=4)](https://github.com/franzyke "franzyke (2 commits)")[![myxiaoao](https://avatars.githubusercontent.com/u/1223134?v=4)](https://github.com/myxiaoao "myxiaoao (2 commits)")[![SachinBahukhandi](https://avatars.githubusercontent.com/u/17425177?v=4)](https://github.com/SachinBahukhandi "SachinBahukhandi (2 commits)")[![paramientos](https://avatars.githubusercontent.com/u/4548213?v=4)](https://github.com/paramientos "paramientos (1 commits)")

---

Tags

laravelgridtailwindformadminfreealpinejsziix-adminziixdk

### Embed Badge

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

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

###  Alternatives

[unopim/unopim

UnoPim Laravel PIM

10.5k2.4k](/packages/unopim-unopim)[dcat-plus/laravel-admin

dcat-plus admin

1474.0k10](/packages/dcat-plus-laravel-admin)[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

28771.7k22](/packages/open-admin-org-open-admin)[printnow/laravel-admin

Dcat admin 永久分叉版 / 支持 Laravel 10-13, PHP 版本限制 &gt;= 8.1（支持 PHP 8.5）

462.6k](/packages/printnow-laravel-admin)

PHPackages © 2026

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