'integer', 'event_id' => 'integer', 'participant_id' => 'integer', 'active' => 'boolean', ]; public function courseEvent(): BelongsTo { return $this->belongsTo(CourseEvent::class); } public function participant(): BelongsTo { return $this->belongsTo(Participant::class); } }