Mohammed Radwan

Results 2 issues of Mohammed Radwan

Hi, Before I ask my question, I'd like to thank you for this wonderful form builder... I was able to get the JSON output of the form builder and passes...

Laravel version 5.8 Nova version 2.0 I have Country and City models, and trying to link them together. ```php NovaBelongsToDepend::make('Country') ->options(\App\MyProject\Countries\Country::all()), NovaBelongsToDepend::make('City') ->optionsResolve(function ($country) { return $country->cities()->get(['id','name']); }) ->dependsOn('Country'), ```...