PHPackages                             bytenet/laravel-admin-base - 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. bytenet/laravel-admin-base

ActiveLibrary

bytenet/laravel-admin-base
==========================

ByteNET Laravel Admin's base package, which offers admin authentication

v0.2.0(9y ago)013MITPHPPHP &gt;5.5.0

Since Mar 30Pushed 9y ago1 watchersCompare

[ Source](https://github.com/ByteNet-Serbia/laravel-admin-base)[ Packagist](https://packagist.org/packages/bytenet/laravel-admin-base)[ Docs](https://github.com/ByteNet-Serbia/laravel-admin-base)[ RSS](/packages/bytenet-laravel-admin-base/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (5)DependenciesVersions (6)Used By (0)

ByteNet\\LaravelAdminBase
=========================

[](#bytenetlaraveladminbase)

Laravel Admin's base package, which offers admin authentication and a blank admin panel

Base
====

[](#base)

[![Latest Version on Packagist](https://camo.githubusercontent.com/39733671b037671621b6dfec3eb8a22f15890726de2f41d95808a09d1b52c51b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f627974656e65742f6c61726176656c2d61646d696e2d626173652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/bytenet/laravel-admin-base)[![Software License](https://camo.githubusercontent.com/7123c32787e013be5a8a13598ad01f562754637ed6141e89b02e85bf16d3e63e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6d6173686170652f6170697374617475732e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/4d0f1995cd56d2b9b4b0c5936b93da902a462af9e7022123882c4effc3989916/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f427974654e65742d5365726269612f6c61726176656c2d61646d696e2d626173652e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/ByteNet-Serbia/laravel-admin-base)[![Coverage Status](https://camo.githubusercontent.com/664c60d89467e592ca6a498e3cdd51ba3ecb7a5c8e99110942689554f4af697f/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f627974656e65742f6c61726176656c2d61646d696e2d626173652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/bytenet/laravel-admin-base/code-structure)[![Quality Score](https://camo.githubusercontent.com/95a6add096cd3e18115efbc62487723f0e16e0021314d7995cf4b86add1dfb15/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f627974656e65742f626173652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/bytenet/laravel-admin-base)[![Total Downloads](https://camo.githubusercontent.com/67d0e9d990345e78445dc87035306cabaa5443ff34d420ed4afe590e011f5b9b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f627974656e65742f6c61726176656c2d61646d696e2d626173652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/bytenet/laravel-admin-base)

Laravel AdminBase central package, which includes:

- a customized version of Laravel's authentication interface; // TODO
- basic user management page (edit password, name, email);
- basic admin dashboard page; // TODO
- pretty error pages; // TODO
- admin-wide alerts system (notification bubbles); // TODO
- roles / permissions; // TODO

Install on Laravel 5.4
----------------------

[](#install-on-laravel-54)

1. Run in your terminal:

```
$ composer require bytenet/laravel-admin-base
```

2. Add the service providers in config/app.php:

```
ByteNet\LaravelAdminBase\BaseServiceProvider::class,
```

3. Then run a few commands in the terminal:

```
$ rm -rf app/Http/Controllers/Auth
$ php artisan vendor:publish --provider="ByteNet\LaravelAdminBase\BaseServiceProvider"
$ php artisan migrate
```

4. Make sure the reset password emails have the correct reset link by editing the adding these to your `User` model:

- before class name `use ByteNet\LaravelAdminBase\app\Notifications\ResetPasswordNotification as ResetPasswordNotification;`
- as a method inside the User class:

```
  /**
   * Send the password reset notification.
   *
   * @param  string  $token
   * @return void
   */
  public function sendPasswordResetNotification($token)
  {
      $this->notify(new ResetPasswordNotification($token));
  }
```

5. \[optional\] Change values in config/bytenet/base.php to make the admin panel your own. Change menu color, project name, developer name etc.

Usage
-----

[](#usage)

1. Register a new user at yourappname/admin/register
2. Your admin panel will be available at yourappname/admin
3. \[optional\] If you're building an admin panel, you should close the registration. In config/bytenet/base.php look for "registration\_open" and change it to false.

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Todos
-----

[](#todos)

// TODO

Testing
-------

[](#testing)

// TODO

```
$ composer test
```

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

[](#contributing)

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

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Nikola Zeravcic](https://github.com/zeravcic)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity52

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

Total

5

Last Release

3328d ago

PHP version history (2 changes)v0.0.1-alphaPHP ~5.5|~7.0

v0.2.0PHP &gt;5.5.0

### Community

---

Top Contributors

[![zeravcic](https://avatars.githubusercontent.com/u/7994942?v=4)](https://github.com/zeravcic "zeravcic (10 commits)")

### Embed Badge

![Health badge](/badges/bytenet-laravel-admin-base/health.svg)

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

PHPackages © 2026

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