コード例 #1
0
 public function ticket()
 {
     return $this->belongsTo(Ticket::getClass());
 }
コード例 #2
0
ファイル: User.php プロジェクト: fgpayano/laravel_teachme
 public function voted()
 {
     return $this->belongsToMany(Ticket::getClass(), 'ticket_votes')->withTimestamps();
 }