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

ActiveLibrary[Admin Panels](/categories/admin)

parthokar/admin-core
====================

Admin dashboard with role &amp; permission management for Laravel

v1.3(4mo ago)11MITBladeCI passing

Since Feb 11Pushed 2mo agoCompare

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

READMEChangelogDependenciesVersions (5)Used By (0)

[![Tests](https://github.com/parthokar90/admin-core/actions/workflows/ci-package.yml/badge.svg)](https://github.com/parthokar90/admin-core/actions/workflows/ci-package.yml/badge.svg)

[![License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)

Admin Core
==========

[](#admin-core)

**Admin Core** is a Laravel package that provides a ready-to-use admin dashboard with authentication, role and permission management, and user management foundation.
Installable via Composer, it allows developers to quickly integrate a powerful admin panel into any Laravel 12+ project.

---

Features (v1.0)
---------------

[](#features-v10)

- Laravel 12 compatible
- Admin authentication (login page + dashboard)
- Package auto-discovery with Service Provider
- Config publish (`config/admin-core.php`)
- Routes, Views, and Migrations included
- Prepares foundation for Role &amp; Permission management

---

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

[](#installation)

### 1. Require the package via Composer (local or GitHub)

[](#1-require-the-package-via-composer-local-or-github)

```
composer require parthokar/admin-core
```

### Artisan Commands

[](#artisan-commands)

Install Admin-Core and create default admin:

Creates default admin user

Creates default roles &amp; permissions

Runs package migrations

```
php artisan admin-core:install
```

Publish config (optional)
-------------------------

[](#publish-config-optional)

1: Config Publish

```
php artisan vendor:publish --tag=admin-core-config
```

2: views Publish

```
php artisan vendor:publish --tag=admin-core-views
```

3: Routes Publish

```
php artisan vendor:publish --tag=admin-core-routes
```

4: Migrations Publish

```
php artisan vendor:publish --tag=admin-core-migrations
```

### Configuration

[](#configuration)

1. Auth Guard

Open config/auth.php in your Laravel project and add:

```
'guards' => [
    'admin' => [
        'driver' => 'session',
        'provider' => 'admins',
    ],
],

'providers' => [
    'admins' => [
        'driver' => 'eloquent',
        'model' => ParthoKar\AdminCore\Models\Admin::class,
    ],
],
```

---

Routes

/admin/login → Admin login page

/admin/dashboard → Admin dashboard (protected by auth:admin)

/admin/logout → Logout

Run the project
---------------

[](#run-the-project)

```
php artisan serve
```

Visit Url
---------

[](#visit-url)

```
http://localhost:8000/admin/login
http://localhost:8000/admin/dashboard
```

---

Default admin credentials email: password: password123

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance82

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

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

Total

4

Last Release

139d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4a522b9a1c202cc4fd43f0903674abfd95a974abac374d3e8e9a5dbd6a886cfb?d=identicon)[parthokar90](/maintainers/parthokar90)

---

Top Contributors

[![parthokar90](https://avatars.githubusercontent.com/u/22549869?v=4)](https://github.com/parthokar90 "parthokar90 (25 commits)")

---

Tags

admin-dashboardlaravellogin-systemmysqlrest-apirole-based-access-control

### Embed Badge

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

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

PHPackages © 2026

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