Laravel: Auth::user()->id trying to get a property of a non-object

后端 未结 18 1617
小鲜肉
小鲜肉 2020-12-04 11:42

I\'m getting the following error \"trying to get a property of a non-object\" when I submit a form to add a user, the error is apparently on the first line: Auth::user()->id

18条回答
  •  有刺的猬
    2020-12-04 12:22

    The first check user logged in and then

    if (Auth::check()){
        //get id of logged in user
        {{ Auth::getUser()->id}}
    
        //get the name of logged in user
        {{ Auth::getUser()->name }}
    }
    

提交回复
热议问题