Google2Fa ready to upload

This commit is contained in:
Kevin Adametz 2021-11-09 18:38:44 +01:00
parent e3495be8b8
commit 73e38a006e
127 changed files with 2637 additions and 589 deletions

View file

@ -36,6 +36,10 @@ use Illuminate\Database\Eloquent\Model;
* @property int|null $nationality_id
* @property-read \App\Models\TravelNationality|null $travel_nationality
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Participant whereNationalityId($value)
* @property bool|null $participant_pass
* @property bool|null $participant_storno
* @method static \Illuminate\Database\Eloquent\Builder|Participant whereParticipantPass($value)
* @method static \Illuminate\Database\Eloquent\Builder|Participant whereParticipantStorno($value)
*/
class Participant extends Model
{
@ -48,7 +52,9 @@ class Participant extends Model
'booking_id' => 'int',
'participant_salutation_id' => 'int',
'participant_child' => 'bool',
'participant_pass' => 'bool'
'participant_pass' => 'bool',
'participant_storno' => 'bool'
];
protected $dates = [
@ -63,7 +69,8 @@ class Participant extends Model
'participant_salutation_id',
'participant_child',
'nationality_id',
'participant_pass'
'participant_pass',
'participant_storno'
];
public function booking()