gpt4 book ai didi

php - 选择错误中的别名

转载 作者:行者123 更新时间:2023-11-28 23:57:46 25 4
gpt4 key购买 nike

我的查询是这样的..

$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)

View 不识别 catcompid 为什么?

最佳答案

你的查询似乎是正确的,我建议你可以检查一下1)如果您加入了正确的查询。2)检查你是否正确提到

groupBy('categories.name')

条件。如果您需要进一步的帮助,请告诉我。

关于php - 选择错误中的别名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31085733/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com