Material Design based administration interface for Laravel 5
THIS PACKAGE ISN'T READY. The full documentation should be provided only in a few months
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
toIget\Base\Models\User
atconfig\auth.php
- Add
IgetMaster\MaterialAdmin\MaterialAdminServiceProvider
service provider atconfig\app.php
- Add following lines to $routeMiddleware array at
app\http\Kernel.php
(replaceguest
andauth
if exists):'auth' => 'IgetMaster\MaterialAdmin\Http\Middleware\AuthMiddleware',
'guest' => 'IgetMaster\MaterialAdmin\Http\Middleware\GuestMiddleware'