是否可以通过多态关系上的日期字段对记录进行排序?这是我的数据库设置:
wrappers
(有很多wrapper_items
)wrapper_items
(属于wrapper
,变身为wrappable_*
)wrappable_type_a
(此字段有一个date_sent
字段)wrappable_type_b
(此日期没有日期字段)wrappable_*
...更多可包装的物品类型保证每个包装器都有一个wrappable_type_a
,所以我要寻找的是能够按wrappers
对wrappable_type_a.date_sent
进行排序。
原始地,我可以这样做:
SELECT * FROM wrappers
JOIN wrapper_items on wrappers.id = wrapper_items.wrapper_id
JOIN wrappable_type_a on wrapper_items.wrappable_id = wrappable_type_a.id
where wrapper_items.wrappable_type = 'App\Models\Wrappables\TypeA'
ORDER BY wrappable_type_a.date_sent DESC
但是我无法使它雄辩地发挥作用。我的方法是:
$wrappers = $wrappers->whereHas('items', function(Builder $query) {
$query->whereHasMorph(
'wrappable',
[App\Models\Wrappables\TypeA::class],
function(Builder $query) {
$query->orderBy('date_sent', 'DESC');
}
);
});
我还需要分页,这就是为什么我要尝试雄辩/构建者。