how to translate the option in a Select?
I tried : ->options((WebsiteType::all()->pluck( ('name')), 'id')), but doesn't work.
->map()Forms\Components\Select::make('website_type_id')
->label(__('Type'))
->options(WebsiteType::all()->pluck('name', 'id'))
->required(),