We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd like to do something like this, but it doesn't seem to trigger anything...
SimpleRepeatable::make('Theme Templates', 'templates', [ Select::make('Theme', 'theme_id')->displayUsingLabels() ->options(fn() => $this->team->themes->pluck('name','id')), Select::make('Template') ->dependsOn(['theme_id'], function (Select $field, NovaRequest $request, FormData $formData) { $field->options(Theme::find($formData->theme_id)->templates); } ) ])->stacked(),
The text was updated successfully, but these errors were encountered:
Depending on a sibling fields inside SimpleRepeatable is not yet supported like so. Pull requests are welcome.
Sorry, something went wrong.
@jjjrmy Did you get any solution here?
Made a pull request for this feature (#61), please let me know if there is something failing and/or missing.
No branches or pull requests
I'd like to do something like this, but it doesn't seem to trigger anything...
The text was updated successfully, but these errors were encountered: