iget-master / material-admin
Installs: 1 028
Dependents: 0
Suggesters: 0
Security: 0
Stars: 15
Watchers: 5
Forks: 4
Open Issues: 6
Language:Blade
Requires
- illuminate/support: ^8.0
- laravelcollective/html: ^6.0
- nicolaslopezj/searchable: 1.*
- dev-master
- v8.1.0
- v8.0.3
- v8.0.2
- v8.0.1
- v8.0.0
- v6.0.1
- v6.0.0
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v1.x-dev
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.4.11
- v0.4.10
- v0.4.9
- v0.4.8
- v0.4.7
- v0.4.6
- v0.4.5
- v0.4.4
- v0.4.3
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.30
- v0.3.29
- v0.3.28
- v0.3.27
- v0.3.26
- v0.3.25
- v0.3.24
- v0.3.23
- v0.3.22
- v0.3.21
- v0.3.20
- v0.3.19
- v0.3.18
- v0.3.17
- v0.3.16
- v0.3.15
- v0.3.14
- v0.3.13
- v0.3.12
- v0.3.11
- v0.3.10
- v0.3.9
- v0.3.8
- v0.3.7
- v0.3.6
- v0.3.5
- v0.3.4
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.20
- v0.2.19
- v0.2.18
- v0.2.15
- v0.2.14
- v0.2.13
- v0.2.12
- v0.2.11
- v0.2.10
- v0.2.9
- v0.2.8
- v0.2.7
- v0.2.6
- v0.2.5
- v0.2.4
- v0.2.3
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.0
- dev-dependabot/npm_and_yarn/minimist-and-mkdirp-1.2.8
- dev-dependabot/npm_and_yarn/bootstrap-sass-3.4.1
- dev-dependabot/npm_and_yarn/http-cache-semantics-and-vue-resource-4.1.1
- dev-dependabot/npm_and_yarn/qs-6.4.1
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/minimatch-and-gulp-3.1.2
- dev-embed-jquery
- dev-issue-18
- dev-L51
- dev-memcached-search
This package is auto-updated.
Last update: 2024-10-28 10:04:37 UTC
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
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'