You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The label displayed is 'Direcciones' but in inline items show 'Direccione' and the label of label or singularLabel not my resource code:
/** * Get the displayable label of the resource. * * @return string */publicstaticfunctionlabel()
{
return__('Direcciones del dealer');
}
/** * Get the displayable singular label of the resource. * * @return string */publicstaticfunctionsingularLabel()
{
return__('Dirección del dealer');
}
I expect in items inline label the singularLabel() value 'Dirección del dealer'
If on the contrary use simple has many make:
HasMany::make('dealerAddresses')
->inline(),
The label displayed is 'dealer_addresses' but in inline items show 'Dealer_address' and I expect in label the value of label method 'Direcciones del dealer' and in items inline label the singularLabel() value 'Dirección del dealer'.
Good morning,
Label not get label or singularLabel from Nova Resource, get name of HasMany passed, my code:
The label displayed is 'Direcciones' but in inline items show 'Direccione' and the label of label or singularLabel not my resource code:
I expect in items inline label the singularLabel() value 'Dirección del dealer'
If on the contrary use simple has many make:
The label displayed is 'dealer_addresses' but in inline items show 'Dealer_address' and I expect in label the value of label method 'Direcciones del dealer' and in items inline label the singularLabel() value 'Dirección del dealer'.
I have installed versions:
Thanks
The text was updated successfully, but these errors were encountered: