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

ActiveLibrary[Admin Panels](/categories/admin)

dappcore/php-admin
==================

Admin panel module for Core PHP framework

v0.1.2(today)021↑2614.3%[8 PRs](https://github.com/dAppCore/php-admin/pulls)1EUPL-1.2PHPPHP ^8.2CI failing

Since Feb 20Pushed todayCompare

[ Source](https://github.com/dAppCore/php-admin)[ Packagist](https://packagist.org/packages/dappcore/php-admin)[ Fund](https://donate.trees.org/-/NPMMSVUP?member=SWZTDDWH)[ RSS](/packages/dappcore-php-admin/feed)WikiDiscussions main Synced today

READMEChangelog (6)Dependencies (3)Versions (12)Used By (1)

Core Admin Package
==================

[](#core-admin-package)

Admin panel components, Livewire modals, and service management interface for the Core PHP Framework.

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

[](#installation)

```
composer require lthn/php-admin
```

Features
--------

[](#features)

### Admin Menu System

[](#admin-menu-system)

Declarative menu registration with automatic permission checking:

```
use Core\Front\Admin\Contracts\AdminMenuProvider;

class MyModuleMenu implements AdminMenuProvider
{
    public function registerMenu(AdminMenuRegistry $registry): void
    {
        $registry->addItem('products', [
            'label' => 'Products',
            'icon' => 'cube',
            'route' => 'admin.products.index',
            'permission' => 'products.view',
        ]);
    }
}
```

### Livewire Modals

[](#livewire-modals)

Full-page Livewire components for admin interfaces:

```
use Livewire\Component;
use Livewire\Attributes\Title;

#[Title('Product Manager')]
class ProductManager extends Component
{
    public function render(): View
    {
        return view('admin.products.manager')
            ->layout('hub::admin.layouts.app');
    }
}
```

### Form Components

[](#form-components)

Reusable form components with authorization:

- `` - Text inputs with validation
- `` - Dropdowns
- `` - Checkboxes
- `` - Toggle switches
- `` - Text areas
- `` - Buttons with loading states

```

```

### Global Search

[](#global-search)

Extensible search provider system:

```
use Core\Admin\Search\Contracts\SearchProvider;

class ProductSearchProvider implements SearchProvider
{
    public function search(string $query): array
    {
        return Product::where('name', 'like', "%{$query}%")
            ->take(5)
            ->get()
            ->map(fn($p) => new SearchResult(
                title: $p->name,
                url: route('admin.products.edit', $p),
                icon: 'cube'
            ))
            ->toArray();
    }
}
```

### Service Management Interface

[](#service-management-interface)

Unified dashboard for viewing workspace services and statistics.

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

[](#configuration)

The package auto-discovers admin menu providers and search providers from your modules.

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

[](#requirements)

- PHP 8.2+
- Laravel 11+ or 12+
- Livewire 3.0+
- Flux UI 2.0+

Changelog
---------

[](#changelog)

See [changelog/2026/jan/features.md](changelog/2026/jan/features.md) for recent changes.

License
-------

[](#license)

EUPL-1.2 - See [LICENSE](../../LICENSE) for details.

###  Health Score

42

—

FairBetter than 88% of packages

Maintenance100

Actively maintained with recent releases

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity44

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 ~27 days

Recently: every ~33 days

Total

6

Last Release

0d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/268332193?v=4)[dappcore](/maintainers/dappcore)[@dAppCore](https://github.com/dAppCore)

---

Top Contributors

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

---

Tags

laraveldashboardadminpanel

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

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

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

PHPackages © 2026

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