I
I
iAlex1952018-05-02 18:53:54
Laravel
iAlex195, 2018-05-02 18:53:54

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 question

Ask a Question

731 491 924 answers to any question