Your array is not formatted correctly:
$this->beforeFilter('auth.colaboradores', array('except' => 'getIndex','postIndex'));
Array
(
[except] => getIndex
[0] => postIndex
)
The following will work:
$this->beforeFilter('auth.colaboradores', array('except' => array('getIndex','postIndex')));
Array
(
[except] => Array
(
[0] => getIndex
[1] => postIndex
)
)
Thank you. That was exactly that. :)
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community