laravel-acl
laravel-acl copied to clipboard
can() not working
Hello, can("action.item") not working in laravel ^5.2. your help is much needed.
Thank you.
+1
see this https://github.com/kodeine/laravel-acl/issues/90
Problem solved :)
My wrong code: ... 'middleware' => ['acl'], ...
...and the correct code: ... 'middleware' => ['auth', 'acl'], ...
Many thx :)
this worked? @nightvis