TextInput::make('title')
->name('title')
->helperText(new HtmlString('Please <b style="color:red">do not</b> include the word indicating the type of event selected, it will be added automatically.'))
->label('Event title')
->prefix(function (Get $get): string {
return Event\Type::find($get('event_type_id'))->name ?? '';
})
TextInput::make('title')
->name('title')
->helperText(new HtmlString('Please <b style="color:red">do not</b> include the word indicating the type of event selected, it will be added automatically.'))
->label('Event title')
->prefix(function (Get $get): string {
return Event\Type::find($get('event_type_id'))->name ?? '';
})