Releases: JosephSilber/bouncer
Releases · JosephSilber/bouncer
v0.0.26
Added new notA
and notAn
methods, so you can now check for the absence of roles:
Bouncer::is($user)->notA('moderator');
Bouncer::is($user)->notAn('editor');
Also added the isNot
method to the user trait:
$user->isNot('admin');
Fixes:
v0.0.25
v0.0.24
v0.0.23
v0.0.22
You can now extend the built-in Ability
& Role
model classes.
After creating your own models, register them with the bouncer:
Bouncer::useAbilityModel(MyAbility::class);
Bouncer::useRoleModel(MyRole::class);
You can also use this to override the default table names; the migrations will use whatever table names you specified in your own models.