Closed andisulistyonugroho closed 8 years ago
I did make the exception gone by changing this line on EloquentAclRepository.php:298
From
$actions = ($actions === true) ? $permission->getActions() : serialize($actions);
to
$actions = ($actions === true) ? serialize($permission->getActions()) : serialize($actions);
Hi @szarik88 I'm using the code from your master branch. When I set the $action is true on grantUserPermission I got and Exception about parameter mismatch, this is my code and the exception, it seems the required $action format is a serialized array?