显示LARAVEL中按月分类的帖子

时间:2017-03-30 18:56:05

标签: mysql laravel laravel-eloquent

我正在使用Laravel Framework编写应用程序

我希望第十个月度视图类别的整个帖子大约一年 (每月不是很多帖子)

视图创建了一个分为12个部分,每个部分一个月

我想知道如何在每个月和同一个月的盒子中写出一系列选项中的条目, 几个月不是任何帖子

    public function index()
{
    $histories = \App\history::where('DATE','>=',$date1)->where('DATE','<=',$date2)->get();
    return view ('year_posts',compact('histories'));    
}

这是我想在框中显示每月帖子的页面

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以按月对帖子进行分组,然后在刀片中,每月对每个组进行迭代。

控制器:

@foreach($groupedHistories as $yearMonth => $posts)
    @foreach($posts as $post)
        {{-- TO DO --}}
    @endforeach
@endforeach

year_posts.blade.php:

this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;