1.0.8
- 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;
...
}