class User extends Eloquent { protected $table = "users"; public function posts(){ return $this->hasMany("Post"); } }