v0.1.3
Pre-release
Pre-release
- You can now call
Bouncer::exclusive()
to have Bouncer deny any abilities that have not been granted via Bouncer. This will cause the Gate to skip any abilities that you have defined in your code. - You can now set your own custom table names:
Bouncer::tables([
'abilities' => 'my_abilities',
'roles' => 'my_roles',
]);
- Adapts Bouncer to the changed arguments-passing introduced in Laravel's gate.