how to translate the option in a Select?

Forms\Components\Select::make('website_type_id')
      ->label(__('Type'))
      ->options(WebsiteType::all()->pluck('name', 'id'))
      ->required(),

I tried : ->options((WebsiteType::all()->pluck( ('name')), 'id')), but doesn't work.
Solution
You need to ->map() your names to the translated names.
Was this page helpful?