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

ActiveLibrary[Admin Panels](/categories/admin)

nurzzzone/admin-panel
=====================

Admin panel

1.0.0(3y ago)04MITCSSPHP &gt;=7.3.0

Since Jul 10Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Nurzzzone/100135)[ Packagist](https://packagist.org/packages/nurzzzone/admin-panel)[ Docs](https://github.com/Nurzzzone/100135)[ RSS](/packages/nurzzzone-admin-panel/feed)WikiDiscussions master Synced 1mo ago

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

### Installation

[](#installation)

```
composer require nurzzzone/admin-panel
```

After package installation run this command to add assets(javascript/css) into public directory

```
php artisan vendor:publish admin-panel-assets
```

### Basic Usage

[](#basic-usage)

`\Nurzzzone\AdminPanel\Support\Table` component renders rows from database as table

```
class PostController extends \Nurzzzone\AdminPanel\Controllers\TableController
{
    public function fromTable()
    {
        $table = new \Nurzzzone\AdminPanel\Support\Table(Post::query());
        $table->enablePagination();
        $table->addColumn(new \Nurzzzone\AdminPanel\Support\Table\Text('ID', 'id'));
        $table->addColumn(new \Nurzzzone\AdminPanel\Support\Table\Text('Title', 'title'));
        return $table;
    }
}
```

If you want to add your custom views using admin-panel layout you need to add this into the top of the blade file:

```
@extends('admin-panel::layouts.base')

@section('title', 'Blog Posts') // page title

@section('css')
    // styles
@endsection()

@section('content')
    // html content
@endsection()

@section('scripts')
    // js
@endsection()
```

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity42

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

1408d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c09beb2f83cb847d71152963e71ea9484b2aef147a49772e67465b9c72305e3f?d=identicon)[nurzzzone](/maintainers/nurzzzone)

---

Top Contributors

[![Nurzzzone](https://avatars.githubusercontent.com/u/73385787?v=4)](https://github.com/Nurzzzone "Nurzzzone (16 commits)")

### Embed Badge

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

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

###  Alternatives

[backpack/crud

Quickly build admin interfaces using Laravel, Bootstrap and JavaScript.

3.4k3.4M207](/packages/backpack-crud)[conedevelopment/root

Root is an admin package for Laravel applications.

3713.1k2](/packages/conedevelopment-root)[eveseat/web

SeAT Web Interface

2723.2k135](/packages/eveseat-web)

PHPackages © 2026

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