Laravel Nova Dependency Container what are the allowed resource properties other than id in dependsOn
PHP Snippet 1:
Text::make('Recipient')
->hide()
->dependsOn(
['type'],
function (Text $field, NovaRequest $request, FormData $formData) {
if ($formData->type === 'gift') {
$field->show()->rules(['required', 'email']);
}
}
),