Problems of links generated by Laravel 5 Paginator

前端 未结 1 1542
你的背包
你的背包 2021-01-19 02:10

I came across a weird problem when I tried to use Paginator in Laravel 5. The data and pagination information were prepared, but when I called $model->render() in blade the

相关标签:
1条回答
  • 2021-01-19 03:09

    Use this code in your blade,

    {!! str_replace('/?', '?', $articles->render()) !!}
    

    This code generate the correct url.

    0 讨论(0)
提交回复
热议问题