Auth::logout();
Auth::login('user01', 'user01');
if(!Auth::check())
{
echo 'please login';
}
echo Auth::has_access('blog.article')? 'true' : 'false';
if i login with superadmin , this shows "true" every time, but with user01 it shows always false, did i have mistake or forgotten thing? maybe condition 'blog.article' is wrong ?
It looks like you're new here. If you want to get involved, click one of these buttons!