'array', 'settings' => 'array', ]; public function emotions(): BelongsToMany { return $this->belongsToMany(Emotion::class, 'emotion_event_type', 'event_type_id', 'emotion_id'); } public function events(): HasMany { return $this->hasMany(Event::class); } }