php - How to sum / get total All price on laravel

one text

Solution:

Try single quoting the expression with DB::raw which you actually want to sum here:

$total  = Pencairan::where('indukpencairan_id', 1)->sum(DB::raw('price*qty'));

Source