Passolution
This commit is contained in:
parent
f79806ffe8
commit
06fc3ba919
31 changed files with 337 additions and 119 deletions
|
|
@ -57,7 +57,8 @@ class Participant extends Model
|
|||
'participant_firstname',
|
||||
'participant_birthdate',
|
||||
'participant_salutation_id',
|
||||
'participant_child'
|
||||
'participant_child',
|
||||
'nationality_id'
|
||||
];
|
||||
|
||||
public function booking()
|
||||
|
|
@ -69,4 +70,9 @@ class Participant extends Model
|
|||
{
|
||||
return $this->belongsTo(Salutation::class, 'participant_salutation_id');
|
||||
}
|
||||
|
||||
public function travel_nationality()
|
||||
{
|
||||
return $this->belongsTo(TravelNationality::class, 'nationality_id');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue