Have you tried using Laravel translations? So instead using Tab::make(__('translation.key.goes.here')); and see if that helps with how the translation string is handled?
Jan 24, 2024
5
Level 1
connected words without spacing
Hello everyone. i have problem in filament PHP when i use tabs in forms with arabic language the text input label show connected words without spacing, can anyone help this is the code public static function form(Form $form): Form { return $form ->schema([ Tabs::make('Tabs') ->tabs([ Tabs\Tab::make('معلومات شخصية') ->schema([ TextInput::make('الاسم الكامل'), TextInput::make('العنوان'), TextInput::make('الموبايل'), TextInput::make('مكان العمل'),
]),
Tabs\Tab::make('معلومات وظيفية')
->schema([
TextInput::make('مكان العمل'),
]),
Tabs\Tab::make('اللجان')
->schema([
// ...
]),
])
]);
}
Please or to participate in this conversation.