简体   繁体   English

Laravel 5.5中的分页注释和模型

[英]Paginate Comments and Models in Laravel 5.5

I am trying to paginate comments section and cadmodels section...but nothing happened...Please tell me where i am wrong. 我正在尝试对评论部分和cadmodels部分进行分页...但是什么也没发生...请告诉我我错了。

Here is a code for pagination.. 这是分页代码。

   public function index()
    {
        $user_id = Auth::user()->id;
        $user = User::where('id',$user_id)->first();
        $user->load('cadmodels','comments.cadmodel')->paginate(5);

        $categories = Categories::all();
        return view('dashboard.index',['user'=>$user,'categories'=>$categories]);
    }
   public function index()
{
    $user_id = Auth::user()->id;
    $user = User::where('id',$user_id)->first();
    $user->load('cadmodels','comments.cadmodel');

    $categories = Categories::all();
    return view('dashboard.index',['user'=>$user->paginate(5),'categories'=>$categories]);
}

您需要在显示结果的视图上添加{{$ whatever-> links()}}。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM