Answers for "how to display all posts assocatied to user in laravel"

PHP
0

how to display all posts assocatied to user in laravel

class User extends Eloquent {

    public function posts() {
        return $this->hasMany('Post');
    }

}

// in order to show it you need to do that in your blade file
{{Auth::user()->posts}}
Posted by: Guest on October-27-2021

Code answers related to "how to display all posts assocatied to user in laravel"

Browse Popular Code Answers by Language