- Laravel Version: 9.35.1 - Nova Version: 4.16.1 - PHP Version: 8.1.11 ### Description: Similar to this bug https://github.com/laravel/nova-issues/issues/2932 now it's appears with dependsOn I can see the symbol only in `Form` and in the others I see `$` ``` Currency::make(__('Total'), 'total') ->dependsOn( ['currency'], function (Currency $field, NovaRequest $request, FormData $formData) { $field->symbol($formData->currency); } ) ```