Laravel paginate with order by | Laravel

  $posts = Post::orderBy('id''desc')->paginate(6);

    $transactions = Transaction::orderBy('name')->paginate(10); 

    $ondata = DB::table('official_news')->orderBy('created_date''desc')->paginate(7);

Try these three method all are tested hope it will help.

Post a Comment

Previous Post Next Post