我想在eager loaded model
上应用oldest()函数TextInput:
background_color: 0,0,0,0
foreground_color: 0,1,255,0.7
在这里你可以看到我想在模拟2的渴望加载模型的列上应用oldest()函数。
我该怎么做?或者还有其他方法吗?
答案 0 :(得分:0)
在with
方法中使用子查询。请参阅Constraining Eager Loads。
->with(['model2' => function($query) {
$query->oldest('column');
}])