Answer the question
In order to leave comments, you need to log in
How to fetch user records from database in Laravel?
You need to display the user's posts on his page.
In User.php added relation
public function post(){
return $this->hasMany('App\post');
}
Output to the page via @foreach($posts as $post)
{{ $post->content }}
Now all posts of all users are displayed.
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question