我的查询是这样的......
$query = DB::table('categories')
->select('categories.name','category_company.id as catcompid ','category_company.company_id','category_company.category_id')
->leftJoin('category_company', function($leftJoin){
$leftJoin->on('categories.id', '=', 'category_company.category_id');
})
->groupBy('categories.name')
->get();
我的观点是这样的..
@foreach($top as $tp)
<tr>
<td>{{ $tp->name }}</td>
<td>
{{ $tp->catcompid }}
</td>
</tr>
@endforeach
它给我这样的错误
ErrorException in 7a50b25fc86bfddf956cb4108a130dd2 line 42: Undefined property: stdClass::$catcompid (View: /var/www/test/resources/views/top/index.blade.php)
视图无法识别catcompid为什么?
答案 0 :(得分:1)
您的查询似乎正确,我建议您查看 1)如果你加入了正确的查询。 2)检查你是否正确提到了
GROUPBY( 'categories.name')
条件。 如果您需要进一步的帮助,请告诉我。