Laravel where 관계 객체 저는 Larabel 5.0으로 웹 API를 개발 중인데 제가 구축하려는 특정 쿼리에 대해서는 잘 모르겠습니다. 제 수업은 다음과 같습니다. class Event extends Model { protected $table = 'events'; public $timestamps = false; public function participants() { return $this->hasMany('App\Participant', 'IDEvent', 'ID'); } public function owner() { return $this->hasOne('App\User', 'ID', 'IDOwner'); } } 그리고. class Participant extends Model { p..