当我拥有复合主键时,我正在努力寻找如何向视图显示正确的数据。
我涉及两个表:
我的控制器中包含以下内容:
//Query UserToDrugMappings table for all of user's records
$drugs = DB::table('user_to_drug_mappings')
->where('user_id', $user)
->get();
return view ('my-health-hub', compact('drugs'));
我认为以下内容:
@foreach($drugs as $drug)
<tr>
<td>{{$drug->pharma_ApplNo }}</td>
<td>{{$drug->pharma_ProductNo }}</td>
</tr>
@endforeach
现在,我需要以某种方式使用ApplNo和ProductNo来搜索pharma_products表并在视图中显示Form列。我不知道该怎么办