2017 © Pedro Peláez
 

library administr

Administration package that allows for fast and flexible admin pages

image

administrcms/administr

Administration package that allows for fast and flexible admin pages

  • Sunday, December 10, 2017
  • by mirovit
  • Repository
  • 1 Watchers
  • 1 Stars
  • 330 Installations
  • JavaScript
  • 1 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 9 Versions
  • 2 % Grown

The README.md

Basic usage

  • Install using composer:
composer require administrcms/administr
  • Register the Service Provider (in config/app.php or in app/Providers/AppServiceProvider.php):
// in app.php
'providers' => [
    // ...
    Administr\Providers\AdministrServiceProvider::class,
    // ...
],

// in AppServiceProvider
public function register()
{
    $this->app->register(\Administr\Providers\AdministrServiceProvider::class);
}

  • Publish assets, configs, migrations and etc.
php artisan vendor:publish --provider="Administr\Providers\AdministrServiceProvider"
  • Migrate the base tables
php artisan migrate

The Versions

10/12 2017
08/09 2016
01/09 2016
04/07 2016
29/06 2016