Hi Im using laravel nova 4 and im not able to find any code for dependsOn() method for a dependent field. I have 2 models (1.type and 2. make) type belongs to make. in my resource, field function, i have codes like below BelongsTo::make('Make'), BelongsTo::make('Type'),
I want the type dropdown to be dependent on the make selected. Type has make_id as foreign key.
is there any method i can achieve this.
Thanks for the help in advance.