如果在我的 Place 模型中有这种关系:
public function openhours()
{
return $this->hasOne('Hours')->select(DB::raw("IF(CURTIME() BETWEEN open_time AND close_time ,'Open','Closed')"));
}
在我的路线中:
$place = Place::with('openhours')->where('id', '=', 5)->get();
我的桌子:
Table Name : hours
Fields :
id int(11)
place_id int(11)
open_time time
close_time time
表记录:
id: 1
place_id: 5
open_time: 10:00:00
close_time: 17:00:00
它只是返回:
openhours:null
当我在 phpmyadmin 中手动运行此查询时,它工作正常。
我究竟做错了什么?
提前致谢。