使用Laravel Model关系基于逗号分隔的ID检索名称,任何人都可以帮忙
for ex
$testing= Testpage::with('relationExample')->where('id',$id)->first();
{{testing->user_ids}} -> output is -> 5,9,15,17
我想使用laravel关系从用户表中显示逗号分隔的名称,而不是逗号分隔的
答案 0 :(得分:0)
您需要另一个查询以逗号分隔并将这些id设置为数组并使用Accounts
whereIn('id',$ids)