fix for wrong FQN

This commit is contained in:
shibby 2016-10-08 01:51:04 +03:00
parent 7f26093b49
commit c356c6b9f2
4 changed files with 4 additions and 4 deletions

View File

@ -65,7 +65,7 @@ class Attendee extends MyBaseModel
*/ */
public function ticket() public function ticket()
{ {
return $this->belongsTo(\App\Models\QuestionType::class); return $this->belongsTo(\App\Models\Ticket::class);
} }
/** /**

View File

@ -98,7 +98,7 @@ class Event extends MyBaseModel
*/ */
public function tickets() public function tickets()
{ {
return $this->hasMany(\App\Models\QuestionType::class); return $this->hasMany(\App\Models\Ticket::class);
} }
/** /**

View File

@ -79,7 +79,7 @@ class Order extends MyBaseModel
*/ */
public function tickets() public function tickets()
{ {
return $this->hasMany(\App\Models\QuestionType::class); return $this->hasMany(\App\Models\Ticket::class);
} }

View File

@ -53,7 +53,7 @@ class Question extends MyBaseModel
public function tickets() public function tickets()
{ {
return $this->belongsToMany(\App\Models\QuestionType::class); return $this->belongsToMany(\App\Models\Ticket::class);
} }
/** /**