我需要依次从两个查询中获取数据
->when($todayDate, function ($query) use ($todayDate) {
$query->whereDate('startdate', '>=', $todayDate)->orderBy('batches.startdate', 'desc');
})->when($todayDate, function ($query) use ($todayDate) {
$query->whereDate('startdate', '<=', $todayDate)->orderBy('batches.startdate', 'desc');
})
4条答案
按热度按时间juzqafwq1#
bzzcjhmw2#
在Laravel中,你可以使用union()方法来合并两个查询的结果。
smdncfj33#
eblbsuwk4#
这就是没有工会我们能做的