php – laravel中的未定义变量左连接

在我的情况下,我想显示每个用户完成的用户和订单,订单有状态
我从输入表单获得$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) {

参考:anonymous functions

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...