Skip to content

DemocracyApps/powerbroker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

powers

This is a simple Laravel utility to facilitate managing capabilities of users or organizations based on the tier or group to which they belong.

Instructions for Use

Installation

Begin by installing this package through Composer.

{
    "require": {
        "democracyapps/powerbroker": "dev-master"
    }
}

Add the service provider to app.php

// app/config/app.php

'providers' => [
    '...',
    'DemocracyApps\PowerBroker\PowerBrokerServiceProvider',
];

For convenience, you may also add the Facade to app.php

'aliases' => [
    '...',
    'PowerBroker' => 'DemocracyApps\PowerBroker\PowerBrokerFacade',
    ];

Configuration Parameters

Next, publish the migrations by running

php artisan vendor:publish

This will create two migrations, one for power groups (table 'da_power_groups') and one for powers (table 'da_powers').

About

Simple system for managing capabilities of users or organizations based on tier or group to which they below

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages