我在使用可翻译库时遇到问题,我正在尝试按名称对公司进行排序,所以正如文档中所写,我需要使用内部连接,我尝试了这段代码,一切都很好,但是当我添加凭证_翻译时数据搞砸了,就像它来自不同的表或记录一样,我不知道我做错了什么:(
$vouchers = Voucher::join('company_translations', 'vouchers.company_id', '=', 'company_translations.company_id')
->join('voucher_translations', 'voucher_translations.voucher_id', '=', 'vouchers.id')
->where('company_translations.locale', '=', 'en');
->where('voucher_translations.locale', '=', 'en')
->orderBy('company_translations.name', 'asc');