PHPackages                             rodlopez/administrator - 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. [Database &amp; ORM](/categories/database)
4. /
5. rodlopez/administrator

ActiveLibrary[Database &amp; ORM](/categories/database)

rodlopez/administrator
======================

A database interface package for Laravel

v1.0.4(5y ago)012MITPHPPHP &gt;7.2

Since Nov 20Pushed 5y ago1 watchersCompare

[ Source](https://github.com/rodlopez/Laravel-Administrator)[ Packagist](https://packagist.org/packages/rodlopez/administrator)[ Docs](http://administrator.frozennode.com)[ RSS](/packages/rodlopez-administrator/feed)WikiDiscussions master Synced 5d ago

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

Laravel Administrator
=====================

[](#laravel-administrator)

update de FrozenNode/Laravel-Administrator para php 7.3 todos los creditos al creador esto solo es un fix
=========================================================================================================

[](#update-de-frozennodelaravel-administrator-para-php-73-todos-los-creditos-al-creador-esto-solo-es-un-fix)

Administrator is an administrative interface builder for [Laravel](http://laravel.com). With Administrator you can visually manage your Eloquent models and their relations, and also create stand-alone settings pages for storing site data and performing site tasks.

- **Author:** Jan Hartigan
- **Website:** [http://frozennode.com](http://administrator.frozennode.com/)
- **Version:** 5.0.12

[![Build Status](https://camo.githubusercontent.com/9a634a4d020d8f402a173ff37a3bf624d55dac949ff4562cd873466ce175e9f1/68747470733a2f2f7472617669732d63692e6f72672f46726f7a656e4e6f64652f4c61726176656c2d41646d696e6973747261746f722e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/FrozenNode/Laravel-Administrator)

[![](https://camo.githubusercontent.com/5000ae3cd94474e259da2c76e25e98417592f1015840ba92ef950261a5bbc990/68747470733a2f2f7261772e6769746875622e636f6d2f46726f7a656e4e6f64652f4c61726176656c2d41646d696e6973747261746f722f6d61737465722f6578616d706c65732f696d616765732f6f766572766965772e6a7067)](https://camo.githubusercontent.com/5000ae3cd94474e259da2c76e25e98417592f1015840ba92ef950261a5bbc990/68747470733a2f2f7261772e6769746875622e636f6d2f46726f7a656e4e6f64652f4c61726176656c2d41646d696e6973747261746f722f6d61737465722f6578616d706c65732f696d616765732f6f766572766965772e6a7067)

Composer
--------

[](#composer)

To install Administrator as a Composer package to be used with Laravel 5, simply run:

```
composer require "frozennode/administrator: 5.*"
```

Once it's installed, you can register the service provider in `config/app.php` in the `providers` array:

```
'providers' => [
	'Frozennode\Administrator\AdministratorServiceProvider',
]
```

Then publish Administrator's assets with `php artisan vendor:publish`. This will add the file `config/administrator.php`. This [config file](http://administrator.frozennode.com/docs/configuration) is the primary way you interact with Administrator. This command will also publish all of the assets, views, and translation files.

### Laravel 4

[](#laravel-4)

If you want to use Administrator with Laravel 4, you need to resolve to Administrator 4:

```
"frozennode/administrator": "4.*"
```

Then publish the config file with `php artisan config:publish frozennode/administrator`. This will add the file `app/config/packages/frozennode/administrator/administrator.php`.

Then finally you need to publish the package's assets with the `php artisan asset:publish frozennode/administrator` command.

### Laravel 3

[](#laravel-3)

Since Administrator has switched over to Composer, you can no longer use `php artisan bundle:install administrator` or `php artisan bundle:upgrade administrator`. If you want to use Administrator with Laravel 3, you must switch to the [3.3.2 branch](https://github.com/FrozenNode/Laravel-Administrator/tree/3.3.2), download it, and add it in the `/bundles/administrator` directory and add this to your bundles.php file:

```
'administrator' => array(
	'handles' => 'admin', //this determines what URI this bundle will use
	'auto' => true,
),
```

Documentation
-------------

[](#documentation)

The complete docs for Administrator can be found at . You can also find the docs in the `/src/docs` directory.

Copyright and License
---------------------

[](#copyright-and-license)

Administrator was written by Jan Hartigan of Frozen Node for the Laravel framework. Administrator is released under the MIT License. See the LICENSE file for details.

Recent Changelog
----------------

[](#recent-changelog)

### 5.0.12

[](#5012)

- Bugfix: Added the table name to the constraint query
- Bugfix: Russian translate in knockout.php
- Bugfix: Update settings.php for `Request::url()` instead of using `url()`

### 5.0.11

[](#5011)

- Bugfix: Had to make the middleware additon backwards compatable
- Docs: Added doc updates

### 5.0.10

[](#5010)

- Bugfix: L5.2 changed the way url() works so added url('/') instead
- Added: Support for middleware additions to the Admin routes via the administrator config
- Testfix: Fixed failing tests

### 5.0.9

[](#509)

- Bugfix: Fix for datetimepicker partially being covered by top menu

### 5.0.8

[](#508)

- Bugfix: Rename Bool class to Boolean to fix PHP 7
- Bugfix: added missing custom attribute field

### 5.0.7

[](#507)

- Bugfix: Fixed boolean true bug
- Bugfix: Fixes a bug where soft deletes are not being properly detected in L5

### 5.0.6

[](#506)

- Added: Support for custom domains in the admin routes
- Added: Ability to access the model from withinthe column output renderer
- Added: Dynamic Form Request Validation

### 5.0.5

[](#505)

- Added: Added password field to the settings view
- Added: Romanian Language
- Added: Basic HasMany Implementation along with re-ordering support
- Bugfix: Autocomplete working with default value
- Bugfix: Adding missing session to Admin Controller
- Bugfix: Fixed improper handling of filter value 0 for Enum/Text field
- Docfix: Simplified the composer command in the install docs to match the packagist.org instuctions
- Docfix: Changed the type definition for global\_rows\_per\_page to int instead of Null|nt since Null causes divide by 0 error

### 5.0.4

[](#504)

- Testfix: fixing tests and js for gulp

### 5.0.3

[](#503)

- Cherry Picking v4.16.7

### 5.0.2

[](#502)

- Cherry Picking v4.16.6

### 5.0.1

[](#501)

- Bugfix: Fixing csrf token mismatches for some requests

### 5.0.0

[](#500)

- Upgraded to Laravel 5
- New translations (az)

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

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

2002d ago

### Community

Maintainers

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

---

Top Contributors

[![rodlopez](https://avatars.githubusercontent.com/u/6869701?v=4)](https://github.com/rodlopez "rodlopez (11 commits)")

---

Tags

laraveldatabasecmsadminadministratorlaravel Administrator

### Embed Badge

![Health badge](/badges/rodlopez-administrator/health.svg)

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

###  Alternatives

[frozennode/administrator

A database interface package for Laravel

1.9k249.4k](/packages/frozennode-administrator)[summerblue/administrator

A database interface package for Laravel, modified!

29329.8k1](/packages/summerblue-administrator)[exodusanto/administrator

A database interface package for Laravel (Legacy of Frozennode Laravel-Administrator)

3910.6k](/packages/exodusanto-administrator)[kalnoy/cruddy

Backend interface for handling CRUD operations on your Laravel Eloquent models.

1635.0k2](/packages/kalnoy-cruddy)

PHPackages © 2026

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