Laravel分页显示奇怪的箭头

zbsbpyhn  于 2023-03-04  发布在  其他
关注(0)|答案(3)|浏览(118)

因此,我使用简单的Laravel分页命令{{$posts->links()}}显示一页上的5个职位。Laravel的分页正在做它的工作,但它显示奇怪的箭头。请参考下面的图像,如果有人愿意帮助可以问我的代码,我会分享他们。

oknwwptz

oknwwptz1#

这是有关此事的官方文件,你可以查看一下
内部应用程序服务提供程序

use Illuminate\Pagination\Paginator;

public function boot()
{
    Paginator::useBootstrap();
}

文件:www.example.comhttps://laravel.com/docs/8.x/pagination#using-bootstrap
示例实现:https://www.itsolutionstuff.com/index.php/post/laravel-8-pagination-example-tutorialexample.html

nwo49xxi

nwo49xxi2#

我在“links”方法中加入了一个参数,这是Bootstrap的一个正确版本:

$posts->links('pagination::bootstrap-4')
but5z9lq

but5z9lq3#

我在这里找到了这个问题的答案:i used laravel pagination links, but i got big icos. < > call in tailwind css code
您需要将此行添加到tailwind.config.js的内容下:

'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',

相关问题