拉拉维尔(Laravel)雄辩的一个月日期的某个领域的汇总?

发布于 2025-01-22 04:55:18 字数 656 浏览 0 评论 0原文

因此,假设我有一个只有ID,日期和销售的桌子。我想要一个Laravel雄辩的查询,以显示迄今为止该月的累计销售额。例如:

我想要的:

ID日期销售ACC
12020-01-01100 1100
22020-01-0250150 150
32020-01-03200350 350
42020-02-01220 220220 220
52020-02-02300520

上表是我想要的雄辩,实际的表没有ACC。

我不想创建一个新列,我只想通过雄辩的查询来显示累积的内容。谢谢你!

So, let's say I have a table with just id, date, and sales. I want a laravel eloquent query that shows the accumulated sales so far for that date for the month. For example:

What I want:

IDDateSalesAcc
12020-01-01100100
22020-01-0250150
32020-01-03200350
42020-02-01220220
52020-02-02300520

The above table is what I want from Eloquent, the actual table is without Acc.

I don't want to create a new column, I just want to show the accumulated through the eloquent query. Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我要还你自由 2025-01-29 04:55:18

尚不清楚您是否已经有模型,但是您提到要使用Eloquend。假设您有一个称为销售的模型。在您的控制器中:

$sales = Sales::all();

$accTotal = $sales->map(function($sale){
   $add += $sale->acc;  
});

return $add;

is not clear if you have a model already, but you mention you want to use eloquend. Let's assume you have a model called Sales. In your controller:

$sales = Sales::all();

$accTotal = $sales->map(function($sale){
   $add += $sale->acc;  
});

return $add;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文