laravel内的未定义变量左连接

时间:2016-05-18 04:35:32

标签: php laravel laravel-5 eloquent anonymous-function

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

但我得到未定义的变量状态,我该怎么做才能解决这个问题?,谢谢

2 个答案:

答案 0 :(得分:6)

Yoo需要使用use构造将变量传递给闭包,如下所示:

->leftJoin('orders', function($join) use ($status) {

而不是

->leftJoin('orders', function($join) {

参考:anonymous functions

答案 1 :(得分:0)

您必须在关闭

中使用use()方法来处理用户变量

尝试

->leftJoin('orders', function($join) use($status){
      $join->on('user_profiles.id','=','orders.id_user')
            ->where('orders.status','=',$status);
})