nahid / talk

Talk is a real-time users messaging and chatting system for Laravel.
MIT License
1.61k stars 326 forks source link

Trying to get property 'name' of non-object on blade view for threads() rest is working #132

Open vaibhavAnchal16 opened 6 years ago

vaibhavAnchal16 commented 6 years ago

Hi I am tryng to list messages on my view but it does not fetches user table information with method withUser. It says tryng to get property of non-object . I am not aware of their model relationships.

My Controller code

  $inboxes = Talk::user(auth()->user()->id)->threads();
    return view('home',compact('inboxes'));

My View