laravel with closure

Posted fengliang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel with closure相关的知识,希望对你有一定的参考价值。

$product = $product->where(‘uuid‘, $uuid)->firstOrFail();

$affiliators = $affiliator->with([
‘affiliatorProducts‘ => function($query) use($product) {

$query->where(‘product_id‘, $product->id);
}])

->orderBy(‘id‘, ‘desc‘)
->paginate($pageSize, null, null, $currentPage);

以上是关于laravel with closure的主要内容,如果未能解决你的问题,请参考以下文章

Laravel - with() 条件

Laravel 5.3 使用 with() 方法预先加载关系

Laravel 的 with 方法返回 null

laravel 中with关联查询限定查询字段

Laravel “with” 将变量大小写更改为蛇形大小写

Laravel “with” 将变量大小写更改为蛇形大小写