gpt4 book ai didi

php - 如何计算用户在一个月内添加的帖子 laravel?

转载 作者:搜寻专家 更新时间:2023-10-31 21:19:25 24 4
gpt4 key购买 nike

我想统计用户在当月添加了多少帖子。我只想得到号码。

这是我试过的方法,但它不起作用:

$currentMonth = date('m');
$datas = DB::table("posts")
->whereRaw('MONTH(created_at) = ?' ,[$currentMonth])
->get();

最佳答案

您应该在用户模型中创建一个 hasMany posts 关系并相应地访问它

像这样的东西应该可以工作

$posts = auth()->user()->posts()->whereDate('created_at',  now()->startOfMonth())->get();

关于php - 如何计算用户在一个月内添加的帖子 laravel?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57856565/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com