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