Forms\Components\Repeater::make('songArtists')
->relationship()
->schema([
Forms\Components\Select::make('artist_id')
->relationship('artist', 'name')
->createOptionForm(fn(Form $form) => ArtistResource::form($form))
->required(),
]),
Forms\Components\Repeater::make('songArtists')
->relationship()
->schema([
Forms\Components\Select::make('artist_id')
->relationship('artist', 'name')
->createOptionForm(fn(Form $form) => ArtistResource::form($form))
->required(),
]),