关联预加载加条件没有效果啊

浏览:607 发布日期:2018/09/06 分类:求助交流 关键字: with,query
$items = Items::with([
            'sku' => function ($query)
            {
                $query->where('sell_price', '<', 'cost_price');
            }
        ])
            ->where('item_status', 1)
            ->paginate(10);
这段代码没有执行啊'sku' => function ($query)
            {
                $query->where('sell_price', '<', 'cost_price');
            }
最佳答案
评论( 相关
后面还有条评论,点击查看>>