dev-master
9999999-dev
The Requires
- php >=5.4.0
- illuminate/support ~4.1
- cartalyst/sentry ~2.0
by Alexander Kalnoy
Wallogit.com
2017 © Pedro Peláez
If your application uses Sentry for authentication, you can it's power to control which entities the user can have access to., (*1)
Each entity has following actions that can be performed: view, create, update, delete.
A user needs to have {entity}.{action} permission to perform an action on specified
entity. For example, in order to be able to view items of products entity, authenticated
user needs to have products.view permission., (*2)
Install the package using a Composer:, (*3)
composer require cruddy/sentry:dev-master@dev
Add a service provider:, (*4)
'Kalnoy\Cruddy\Sentry\SentryServiceProvider',
Set the permissions driver in Cruddy's configuration:, (*5)
'permissions' => 'sentry',