Administrator is an administrative interface builder for Laravel. 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
- Version: 4.6.1
To install Administrator as a Composer package to be used with Laravel 4, simply add this to your composer.json:
"frozennode/administrator": "dev-master"
..and run composer update
. Once it's installed, you can register the service provider in app/config/app.php
in the providers
array:
'providers' => array(
'Frozennode\Administrator\AdministratorServiceProvider',
)
Then publish the config file with php artisan config:publish frozennode/administrator
. This will add the file app/config/packages/frozennode/administrator/administrator.php
. This config file is the primary way you interact with Administrator.
Then finally you need to publish the package's assets with the php artisan asset:publish frozennode/administrator
command.
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, 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,
),
The complete docs for Administrator can be found at http://administrator.frozennode.com. You can also find the docs in the /src/docs
directory.
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.
- Bugfix: Call to App::make('itemconfig') in the header would cause an error on dashboard pages
- Bugfix: Fonts are now loaded locally which should no longer cause hanging issues when you have no internet connection
- Bugfix: <=IE9 was having issues with the dropdown menu
- Support for smaller screens and mobile devices
- Visible option for columns that accepts either a boolean or closure
- Relationship constraints now work with hasMany and hasOne fields
- There is now an
options_filter
option for relationship fields that lets you modify the query before getting the relationship options - Custom actions and saves now rebuild the supplied config file after performing the action
- The
editable
property now accepts a closure and is passed the current page's data object - New translations (da, it)
- Bugfix: Constraint fields no longer make multiple requests at a single time
- Bugfix: The key field is no longer set on models. This would cause some bugs on some setups