Fields in custom resourse:
public function fields(NovaRequest $request)
{
return [
Text::make(__('resource.title'), 'title')->translatable(),
HasOne::make(__('resource.add_data.for_customers.title'), 'dataForCustomers', DataForCustomers::class),
];
}
When my resource DataForCustomers::class have traslatable fileds:
public function fields(NovaRequest $request)
{
return [
Text::make(__('resource.title'), 'title')->translatable(),
Trix::make(__('resource.content'), 'content')->translatable(),
];
}
then send the data, then the fields have no dataForCustomers key wrapper, form data:

Fields in custom resourse:
When my resource
DataForCustomers::classhave traslatable fileds:then send the data, then the fields have no
dataForCustomerskey wrapper, form data: