Forms\Components\Select::make('location_id')
->label('Location')
->relationship('location', 'name')
->required()
->searchable()
->preload()
->createOptionForm([
Forms\Components\TextInput::make('name')
->required()
->maxLength(255),
])
->editOptionForm([
Forms\Components\TextInput::make('name')
->required()
->maxLength(255),
])
->editOptionAction(fn (Forms\Components\Actions\Action $action, $record) => $action
->extraModalFooterActions([
DeleteAction::make()
->record($record)
->cancelParentActions(),
]),
),
Forms\Components\Select::make('location_id')
->label('Location')
->relationship('location', 'name')
->required()
->searchable()
->preload()
->createOptionForm([
Forms\Components\TextInput::make('name')
->required()
->maxLength(255),
])
->editOptionForm([
Forms\Components\TextInput::make('name')
->required()
->maxLength(255),
])
->editOptionAction(fn (Forms\Components\Actions\Action $action, $record) => $action
->extraModalFooterActions([
DeleteAction::make()
->record($record)
->cancelParentActions(),
]),
),