$group_driver = \Auth::group(); $acl_driver = \Auth::acl();
\Auth::member(5); // checks if current logged in user is a member of group 5 \Auth::has_access(array('website', array('read'))); // checks if the logged in user has access to 'website' with rights 'read'
$groups = Auth::instance()->get_user_groups(); $default_group = $groups[0][1];
It looks like you're new here. If you want to get involved, click one of these buttons!