PHPackages                             sujan-sht/admin-master - 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. sujan-sht/admin-master

ActiveLibrary[Admin Panels](/categories/admin)

sujan-sht/admin-master
======================

Laravel Admin Panel

v1.0.0(10mo ago)114MITBladePHP ^7.4|^8.0

Since Jun 25Pushed 10mo ago1 watchersCompare

[ Source](https://github.com/sujan-sht/AdminMaster)[ Packagist](https://packagist.org/packages/sujan-sht/admin-master)[ Docs](https://github.com/sujan-sht/admin-master)[ RSS](/packages/sujan-sht-admin-master/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (5)Versions (2)Used By (0)

Very short description of the package
=====================================

[](#very-short-description-of-the-package)

[![Latest Version on Packagist](https://camo.githubusercontent.com/7abc261220fbf25fc2cd319e49932deaa2c9cf19034cd39faaf24e9a870f8b55/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73756a616e2d7368742f61646d696e2d6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sujan-sht/admin-master)[![Total Downloads](https://camo.githubusercontent.com/987e32a07c6e1a68f516e250d9e9d1f6caa2b9eaa3c59e18eb5d5619e7525168/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73756a616e2d7368742f61646d696e2d6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sujan-sht/admin-master)[![GitHub Actions](https://github.com/sujan-sht/admin-master/actions/workflows/main.yml/badge.svg)](https://github.com/sujan-sht/admin-master/actions/workflows/main.yml/badge.svg)

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

[](#installation)

You can install the package via composer:

```
composer require sujan-sht/admin-master
```

Usage
-----

[](#usage)

To use the admin panel, you must publish the required assets and configuration files. Run the following commands:

```
php artisan vendor:publish --tag=admin-master-config
php artisan vendor:publish --tag=media-library-modules
php artisan vendor:publish --provider="Rappasoft\LaravelLivewireTables\LaravelLivewireTablesServiceProvider" --tag=livewire-tables-config
php artisan vendor:publish --tag=admin-master-seeders
```

These will publish:

- Public assets (CSS, JS)
- Configuration file (config/admin-master.php)
- Media library module scaffolding (app/Modules)

After publishing, In config/livewire-tables.php file

```
'theme' => 'bootstrap-4',
```

Add AdminMasterUser Trait in Your User Model

```
use SujanSht\AdminMaster\Traits\AdminMasterUser;

class User extends Authenticatable
{
    use AdminMasterUser;
}
```

To migrate tables

```
php artisan migrate
```

Seed the database to create superadmin,dummy roles and permissions

```
php artisan db:seed RoleSeeder
php artisan db:seed UserSeeder
php artisan db:seed PermissionSeeder
```

You can now login superadmin user using this credentials

```
email: admin@admin.com
password: admin123
```

In config/app.php add this line.

```
'providers' => ServiceProvider::defaultProviders()->merge([
        ......
        App\Providers\AdminServiceProvider::class
    ])->toArray(),
```

In routes/web.php add this line

```
Route::admin();
```

You can simply generate CRUD using command/by creating menu from admin panel that will generate all the files in repository pattern.

```
php artisan make:crud Test
```

Install Media Library

Include Package Path In composer.json .

```
    "repositories": {
        "spatie/laravel-medialibrary-pro": {
            "type": "path",
            "url": "app/Modules",
            "options": {
                "symlink": true
            }
        }
    }
```

After adding it in composer.json, run the command

```
composer require spatie/laravel-medialibrary-pro:dev-main
```

Optional
--------

[](#optional)

To customize configuration, views, migrations, and seeders, you may also publish:

```
php artisan vendor:publish --tag=admin-master-assets
php artisan vendor:publish --tag=admin-master-views
php artisan vendor:publish --tag=admin-master-migrations
```

These allow you to:

- Override package blade views
- Modify database migrations and seeders as needed

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Sujan Shrestha](https://github.com/sujan-sht)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

Laravel Package Boilerplate
---------------------------

[](#laravel-package-boilerplate)

This package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance54

Moderate activity, may be stable

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

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

321d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0063dce7cc54d84a542fee0b53e415e17838405ccf3a5d48b7ca0d075ff7f38d?d=identicon)[sujan-sht](/maintainers/sujan-sht)

---

Top Contributors

[![sujan-sht](https://avatars.githubusercontent.com/u/41070166?v=4)](https://github.com/sujan-sht "sujan-sht (35 commits)")

---

Tags

sujan-shtadmin-master

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/sujan-sht-admin-master/health.svg)

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

###  Alternatives

[power-components/livewire-powergrid

PowerGrid generates Advanced Datatables using Laravel Livewire.

1.7k1.7M6](/packages/power-components-livewire-powergrid)[appzcoder/crud-generator

Laravel CRUD Generator

1.4k581.4k7](/packages/appzcoder-crud-generator)[filament/support

Core helper methods and foundation code for all Filament packages.

2323.9M151](/packages/filament-support)[litstack/litstack

Laravel Content-Administration

86132.5k8](/packages/litstack-litstack)[guava/filament-nested-resources

162172.1k2](/packages/guava-filament-nested-resources)[andreia/filament-ui-switcher

Add a modal with options to switch between different UI layouts and styles (colors, fonts, font sizes).

233.8k](/packages/andreia-filament-ui-switcher)

PHPackages © 2026

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