Usefull mathematic algorithm in laravel

Usefull mathematic algorithm in laravel

A. Average Value
$price = DB::table(‘orders’)
->where(‘finalized’, 1)
->avg(‘price’);
A. Sum Value
$price = DB::table(‘orders’)
->where(‘finalized’, 1)
->sum(‘price’);

Leave a Reply