T.J. Crowder
0
Q:

sum row data and get all data eloquent laravel

Product::where('id',$id)->sum('quantity');
1
$balance = DB::table('data')->where('user_id' '=' $id)->sum('balance');
0
Auth::user()->products->sum('price');
// And on your App/User.php you need someting like this:
public function products(){
  return Products::where('id_buyer', Auth::user()->id)->get();
}
-1

New to Communities?

Join the community