gpt4 book ai didi

分页没有在 Laravel 5.5 中设置样式

转载 作者:行者123 更新时间:2023-12-01 06:55:09 24 4
gpt4 key购买 nike

这是我的代码,我在其中显示了我的博客文章的分页!!

<div class="clearfix">
{{ $posts->render() }}
<a class="btn btn-secondary float-right" href="#">Older Posts &rarr;</a>
</div>

这是调用分页功能的 Controller 。
public function index()
{
$posts = post::where('status',1)->paginate(2);
return view('user.blog',compact('posts'));
}

我尝试了很多,但我的分页显示但样式不正确!
为什么 ??

Here I show what is happening above the black line !!

最佳答案

要在 Blade View 中显示分页链接:

{{ $posts->links() }}

或者,如果您需要指定 Bootstrap 4:
{{$posts->links("pagination::bootstrap-4")}}

Laravel 文档: https://laravel.com/docs/5.5/pagination

关于分页没有在 Laravel 5.5 中设置样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46617600/

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