我试图将查询转换为雄辩的或找到一种在laravel控制器中使用它的方法。

查询是:

select employee, workdate, sum(actualhours)
from ts_data group by employee, workdate;"

最佳答案

使用口才模型:

$records = TsData::select(
    'employee',
    'workdate',
    \DB::raw('sum(actualhours) as sumhours')
)
->groupBy('employee', 'workdate')
->get();


或使用DB Facade:

$records = \DB::table('ts_data')->select(
    'employee',
    'workdate',
    \DB::raw('sum(actualhours) as sumhours')
)
->groupBy('employee', 'workdate')
->get();

10-06 14:37