administrcms/administr

There is no license information available for the latest version (6.0) of this package.

Administration package that allows for fast and flexible admin pages

Installs: 390

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 3

Open Issues: 0

Language:JavaScript

6.0 2019-10-02 19:15 UTC

This package is auto-updated.

Last update: 2024-04-13 00:58:56 UTC


README

  • 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