Answers for "laravel select where with total sum query to get all data with sum"

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
0

laravel select where with total sum query to get all data with sum

$query =  SalesPayment::select('*', \DB::raw('SUM(amount) AS total_sale_amount')->with ....
Posted by: Guest on April-04-2022

Browse Popular Code Answers by Language