有人知道如何以当前语言显示产品说明吗?我在 config / Voyager.php 中启用了多语言,并且我已经阅读了文档,但我不明白(例如,如何通过翻译从表格中调用产品,我确实喜欢这个$products = Product::withTranslation($locale)->get();
,但这不是工作)。
答案 0 :(得分:0)
if (Voyager::translatable($products)) {
$products = $products->translate($locale, 'en');
}