Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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}}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #display #posts #assocatied #user #laravel
ADD COMMENT
Topic
Name
8+8 =