I have followed the example and with this function in my controller I get the slideover with the named field
public function slideAction(): Action{ return Action::make('slide') ->slideOver() ->form( form: [ TextInput::make(name: 'name'), ] ) ->action(action: function () { // this is the submit action so not really relevant });}
public function slideAction(): Action{ return Action::make('slide') ->slideOver() ->form( form: [ TextInput::make(name: 'name'), ] ) ->action(action: function () { // this is the submit action so not really relevant });}
I have within another controller (ArchObjectResource) an infolist defined like this:
public static function infolist(Infolist $infolist): Infolist { return $infolist ->schema(components: [ Section::make(heading: 'References') ->columns(2) ->schema([ TextEntry::make(name: 'object_key'), TextEntry::make(name: 'hcat_reference'),.........
public static function infolist(Infolist $infolist): Infolist { return $infolist ->schema(components: [ Section::make(heading: 'References') ->columns(2) ->schema([ TextEntry::make(name: 'object_key'), TextEntry::make(name: 'hcat_reference'),.........