Turaylon / Laravel-Administrator

An administrative interface package for Laravel

Home Page:http://administrator.frozennode.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Laravel Administrator

Administrator is a database interface package for the Laravel PHP framework. Administrator provides a visual interface to manage the data models on your site as you define them. In its most basic configuration, all you have to do is reference your application's Eloquent data models and provide a couple more configuration options.

  • Author: Jan Hartigan
  • Website: http://frozennode.com
  • Version: 4.0.1
  • Development Version: 4.1.0 (please submit pull requests to this branch)

Composer

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 install. Once it is 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.

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, 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

The complete docs for Administrator can be found at http://administrator.frozennode.com. You can also find the docs in the /src/docs directory.

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.

Changelog

4.0.1

  • Bugfix: "languages" array from L3 replaced by administrator config's "locales"
  • New language: Chinese (zh-CN)

See changelog.md for the changelog from previous versions

About

An administrative interface package for Laravel

http://administrator.frozennode.com/

License:MIT License