*/ use HasFactory; protected $fillable = [ 'code', 'name', ]; public function songs() { return $this->belongsToMany(Song::class); } }