所以我需要找到所有ProductionTask
确定belongTo
的Operation
如果
- 在哪里
'status', '<', 3
orWhere('expected_start', '>', $monday_date)
与执行orWhere
列operation_id
从雄辩的关系与Operation
被忽略。
我该怎么办?
这是错误的代码:
return production\ProductionTask::where('operation_id', $operation->id)->where('status', '<', 3)->orWhere('expected_start', '>', $monday_date)->and('expected_end', '<', $sunday_date)->get();