Skip to content

1.0.8

Compare
Choose a tag to compare
@kongulov kongulov released this 15 Oct 10:47
· 48 commits to master since this release
ec18961
  • Replace field name
NovaTabTranslatable::make([
    Text::make('Title')->rules('required'),
])->setTitle('Own Title'),
  • If on the index and detail pages you want to turn off the tab and show it each as a row, use trait TranslatableTabToRowTrait in your resource
class YourResource extends Resource
{
    use TranslatableTabToRowTrait;
    ...
}