neposoft/field-acl

A laravel package to support acl on fields of your models
99 6
Install
composer require neposoft/field-acl
Latest Version:1.0.1
PHP:>=5.4.0
License:MIT
Last Updated:Sep 8, 2016
Links: GitHub  ·  Packagist
Maintainer: neposoft

Laravel ACL on field level

How to use the package:

  • Add a dependency to your composer composer require neposoft/field-acl

  • Add the service provider in config/app.php
    Neposoft\FieldAcl\FieldAclServiceProvider::class

  • php artisan vendor:publish to publish config files, views and migrations

  • Add class that you want to manage in config/fieldAcl.php , inside class

    'classes' => [
       \App\User::class
    ]
    
- also change the roles and other parameters according to your needs. 

- In your model, use FieldAcl trait: 

         use    Neposoft\FieldAcl\FieldAcl;

- Open the browser at `/permissions` and you are ready to manage the permissions for the groups that you defined in config.

![Screenshot](http://i.imgur.com/FUp41FM.png)

If any trouble, don't hesistate to open issues :)