Laravel Eloquent Sum of relation#39;s column(Laravel Eloquent Sum of关系的列)
问题描述
我一直在开发一个购物车应用程序,现在我遇到了以下问题..
I've been working on a shopping cart application and now I've come to the following issue..
有一个用户、一个产品和一个购物车对象.
- 购物车表仅包含以下列:
id
、user_id
、product_id
和时间戳. - UserModel
hasMany
Carts(因为一个用户可以存储多个产品). - CartModel
belongsTo
用户和 CartModelhasMany
产品.
- The Cart table only contains the following columns:
id
,user_id
,product_id
and timestamps. - The UserModel
hasMany
Carts (because a user can store multiple products). - The CartModel
belongsTo
a User and CartModelhasMany
Products.
现在计算我可以调用的总产品数:Auth::user()->cart()->count()
.
Now to calculate the total products I can just call: Auth::user()->cart()->count()
.
我的问题是:如何获得该用户购物车中产品的价格(一列产品)的SUM()
?
我想使用 Eloquent 而不是使用查询来完成此操作(主要是因为我认为它更简洁).
My question is: How can I get the SUM()
of prices (a column of product) of the products in cart by this User?
I would like to accomplish this with Eloquent and not by using a query (mainly because I believe it is a lot cleaner).
推荐答案
Auth::user()->products->sum('price');
文档对某些 Collection
方法略显简单,但除了 avg()
之外,所有查询构建器聚合似乎都可用,可在 http://laravel.com/docs/queries#aggregates.
The documentation is a little light for some of the Collection
methods but all the query builder aggregates are seemingly available besides avg()
that can be found at http://laravel.com/docs/queries#aggregates.
这篇关于Laravel Eloquent Sum of关系的列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel Eloquent Sum of关系的列
基础教程推荐
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01