Translatable multiselect
I have a multiselect with spatie translatable, but when I change language, the values are not translated and I get console error: Uncaught (in promise) Could not find Livewire component in DOM tree in select.js
Forms\Components\Select::make('transportTypes')
->relationship('transportTypes', 'name')
->getOptionLabelFromRecordUsing(fn (TransportType $transportType) => $transportType->name)
->preload()
->multiple()
->columnSpanFull(),
0 Replies