我想在我的laravel应用程序中制作图表,我想显示每个月创建了多少帖子,所以我需要一种如下的API:
{
count:22,
month:1-1-2020
},
{
count:18,
month:1-2-2020
}
这是我试图做的:
return Post::all()->groupBy(function($post) { // Get all posts as collection and apply groupBy method
$post->created_at->format('F'); // ex: September
});
但是按月份对计数进行分组不起作用,所以有没有办法实现这一点?
一只甜甜圈
jeck猫
心有法竹
随时随地看视频慕课网APP