Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

777not888's avatar

Cascading select in Laravel Nova

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".

0 likes
3 replies

Please or to participate in this conversation.