2017 © Pedro Peláez
 

library administrator

A database interface package for Laravel

image

thirdsteplabs/administrator

A database interface package for Laravel

  • Thursday, August 21, 2014
  • by beaulm
  • Repository
  • 1 Watchers
  • 0 Stars
  • 23 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laravel Administrator

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., (*1)

Build Status, (*2)

Composer

To install Administrator as a Composer package to be used with Laravel 4, simply add this to your composer.json:, (*3)

"thirdsteplabs/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:, (*4)

'providers' => array(
    'Thirdsteplabs\Administrator\AdministratorServiceProvider',
)

Then publish the config file with php artisan config:publish Thirdsteplabs/administrator. This will add the file app/config/packages/Thirdsteplabs/administrator/administrator.php. This config file is the primary way you interact with Administrator., (*5)

Then finally you need to publish the package's assets with the php artisan asset:publish Thirdsteplabs/administrator command., (*6)

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:, (*7)

'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.Thirdsteplabs.com. You can also find the docs in the /src/docs directory., (*8)

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., (*9)

Changelog

4.11.2

  • Bugfix: Strange legacy issue that was never caught with passing a no-op to array_get

4.11.1

  • Bugfix: There was a routing issue with the new non-numeric model ids

4.11.0

  • Model ids no longer have to be numeric
  • New translations (vi)

The Versions

21/08 2014

dev-master

9999999-dev

A database interface package for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Hartigan
by Beau Lynn-Miller

database laravel cms admin administrator laravel-administrator