v0.0.26
Pre-release
Pre-release
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: