在我的情况下,我想显示每个用户完成的用户和订单,订单有状态
我从输入表单获得$status
这是我的代码
$orders = DB::table('user_profiles')
->leftJoin('orders', function($join){
$join->on('user_profiles.id','=','orders.id_user')
->where('orders.status','=',$status);
})
->selectRaw('user_profiles.*, count(orders.id_user) as order_try_count')
->groupBy('user_profiles.id')
->orderBy('order_try_count',$order)
->paginate(15);
但我得到未定义的变量状态,我该怎么做才能解决这个问题?,谢谢
解决方法:
Yoo需要使用use构造将变量传递给闭包,如下所示:
->leftJoin('orders', function($join) use ($status) {
代替
->leftJoin('orders', function($join) {