Need eloquent/fluent query to get sum with groupBy function.
So far I have tried:
$this->data[\'no_of_pages\'] = Document::sum(\'no_of_pages\'
Document::Where('some_condition',true) ->select([DB::raw("SUM(debit) as total_debit"), DB::raw("SUM(credit) as total_credit")]) ->groupBy('id') ->get()