Level 8
If I understand correctly you want multiple selects whose content is based on a parent select. https://novapackages.com/packages/dillingham/nova-ajax-select
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I have:
public function fields(Request $request)
{
return [
Text::make('Game'),
BelongsTo::make('Category'),
BelongsTo::make('Subcategory')
];
}
How do I make a cascading selection on creation 'Game'? The field "Subcategory" should include only those that belong to the selected "Category".
If I understand correctly you want multiple selects whose content is based on a parent select. https://novapackages.com/packages/dillingham/nova-ajax-select
Please or to participate in this conversation.