Answers for "how to select sum in laravel"

PHP
1

select sum in laravel

Sometime for such queries you need to disable the strict check
 So inside config/database.php and inside mysql, 
 Set 'strict' => false,

->select('user_id', DB::raw('SUM(points) as total_points'))
Posted by: Guest on August-13-2020

Browse Popular Code Answers by Language