Forms\Components\Select::make('genre')
->relationship(name: 'genre', titleAttribute: 'name')
->createOptionForm([
Forms\Components\TextInput::make('name')
->required()
->unique(Genre::class, 'name')
->autofocus()
,
])
,
Forms\Components\Select::make('genre')
->relationship(name: 'genre', titleAttribute: 'name')
->createOptionForm([
Forms\Components\TextInput::make('name')
->required()
->unique(Genre::class, 'name')
->autofocus()
,
])
,