fix for wrong FQN
This commit is contained in:
parent
7f26093b49
commit
c356c6b9f2
|
|
@ -65,7 +65,7 @@ class Attendee extends MyBaseModel
|
|||
*/
|
||||
public function ticket()
|
||||
{
|
||||
return $this->belongsTo(\App\Models\QuestionType::class);
|
||||
return $this->belongsTo(\App\Models\Ticket::class);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ class Event extends MyBaseModel
|
|||
*/
|
||||
public function tickets()
|
||||
{
|
||||
return $this->hasMany(\App\Models\QuestionType::class);
|
||||
return $this->hasMany(\App\Models\Ticket::class);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ class Order extends MyBaseModel
|
|||
*/
|
||||
public function tickets()
|
||||
{
|
||||
return $this->hasMany(\App\Models\QuestionType::class);
|
||||
return $this->hasMany(\App\Models\Ticket::class);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class Question extends MyBaseModel
|
|||
|
||||
public function tickets()
|
||||
{
|
||||
return $this->belongsToMany(\App\Models\QuestionType::class);
|
||||
return $this->belongsToMany(\App\Models\Ticket::class);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue