'array', 'description' => 'array', ]; public function eventTypes(): BelongsToMany { return $this->belongsToMany(EventType::class, 'emotion_event_type', 'emotion_id', 'event_type_id'); } public function tasks(): HasMany { return $this->hasMany(Task::class); } }