iget-master/material-admin

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

Installs: 1 027

Dependents: 0

Suggesters: 0

Security: 0

Stars: 15

Watchers: 5

Forks: 4

Open Issues: 6

Language:Blade


README

Material Design based administration interface for Laravel 5

THIS PACKAGE ISN'T READY. The full documentation should be provided only in a few months

Installation

Add "iget-master/material-admin": "dev-master" to "require" in your app composer.json file, then run composer update to get the package.

  • Change model to Iget\Base\Models\User at config\auth.php
  • Add IgetMaster\MaterialAdmin\MaterialAdminServiceProvider service provider at config\app.php
  • Add following lines to $routeMiddleware array at app\http\Kernel.php (replace guest and auth if exists):
    • 'auth' => 'IgetMaster\MaterialAdmin\Http\Middleware\AuthMiddleware',
    • 'guest' => 'IgetMaster\MaterialAdmin\Http\Middleware\GuestMiddleware'