我想从Laravel项目中的数据库中检索数据(行数)。
其中一些应该property_collection_id
作为Live Event
字段,其他人应该status
作为Past Event
字段。
我该怎么做才是Laravel Query Builder?
示例:
status
答案 0 :(得分:0)
找到答案..
$LatestpastEventsDetails = DB::table('event')->select('eventName', DB::raw('"live" as status'))->get();
为现场和upcomming做同样的事情.. 使用Union检索完整数据集