*/ protected $fillable = [ 'name', ]; public function artists(): BelongsToMany { return $this->belongsToMany(Artist::class, 'artist_sings_genres', 'genre_id', 'artist_id'); } }