PHPackages                             eklundkristoffer/administer - 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. eklundkristoffer/administer

ActiveLibrary[Admin Panels](/categories/admin)

eklundkristoffer/administer
===========================

0.11(9y ago)045MITCSS

Since Feb 16Pushed 9y ago1 watchersCompare

[ Source](https://github.com/eklundkristoffer/administer)[ Packagist](https://packagist.org/packages/eklundkristoffer/administer)[ RSS](/packages/eklundkristoffer-administer/feed)WikiDiscussions master Synced 4w ago

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

### Table of contents

[](#table-of-contents)

- [Installation](#installation)
- [Users](#users)
    - [Limits](#limits)
    - [User Model](#user-model)
    - [Authentication](#authentication)
- [Models](#models)
    - [Editable Models](#editable-models)
- [Commands](#commands)
    - [Add User Role](#add-user-role)
    - [Delete User Role](#delete-user-role)

\###Installation

require the project using Composer:

```
composer require eklundkristoffer/administer

```

or manually update your require block and run `composer update`

```
{
    "require": {
        "eklundkristoffer/administer": "~0.1"
    }
}

```

### Users

[](#users)

##### Limits

[](#limits)

- Only eloquent driver is supported.
- Multiple guards is not supported.

##### User model

[](#user-model)

Your user model should also be extending Administers own user model:

```
namespace App\User;

use Administer\Models\User as Administer;

class User extends Administer
{
    //
}
```

#### Authentication

[](#authentication)

If you want a administer to login using email for example, you will have to update `$username` property in your user model. Administer is using `username` and `password` fields on default.

```
namespace App\User;

use Administer\Models\User as Administer;

class User extends Administer
{
    /**
    * Field to be used as username during authentication.
    *
    * @var string
    */
   protected $username = 'username';

   /**
    * Field to be used as password during authentication.
    *
    * @var string
    */
   protected $password = 'password';
}
```

### Models

[](#models)

##### Editable Models

[](#editable-models)

By adding a model to the `models` array in `config/administer.php` Administer will then automatically let you edit the model records from the web. You can with ease define which fields that can be edited, and which fields that should be shown in the presentation list.

```
'models' => [
    App\User::class => [
        'present_fields' => ['username', 'email'],
        'editable_fields' => ['username', 'email']
    ]
],
```

### Commands

[](#commands)

##### Add User Role

[](#add-user-role)

```
php artisan administer:user:addrole {user_id} {roles*}

```

##### Delete User Role

[](#delete-user-role)

```
php artisan administer:user:deleterole {user_id} {roles*}

```

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

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

Total

2

Last Release

3414d ago

### Community

Maintainers

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

---

Tags

adminpanellaravellaravel-packagelaravel54

### Embed Badge

![Health badge](/badges/eklundkristoffer-administer/health.svg)

```
[![Health](https://phpackages.com/badges/eklundkristoffer-administer/health.svg)](https://phpackages.com/packages/eklundkristoffer-administer)
```

PHPackages © 2026

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