vhinx / acl
There is no license information available for the latest version (dev-master) of this package.
dev-master
2014-11-18 01:17 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2024-11-05 02:38:17 UTC
README
Simple Acl for laravel 4
Content
- default log in
- (CRUD) maintenance for users 2.1. assign multiple group per user
- (CRUD) maintenance for groups 3.1. assign resources (list of actions) for groups
- (CRUD) maintenance for resources (list of actions)
- log out
Installation
Add the following line to the require
section of composer.json
:
{ "require": { "vhinx/acl": "dev-master" } }
Setup
- Add
Vhinx\Acl\AclServiceProvider
to the service provider list inapp/config/app.php
. - change the value of model in
app/config/auth.php
toVhinx\\Acl\\Models\\User
- run
php artisan migrate --package=Vhinx/Acl
- run
php artisan db:seed --classname=DataSeeder
- run
php artisan asset:publish --package=Vhinx/Acl