Next Previous Link Button Pagination Laravel

In this article, we will see the next previous link button pagination in laravel 8. Using paginate() function you can easily create pagination in laravel. we can create customize next and previous pagination links in laravel 8. The paginate method automatically takes care of setting the query's "limit" and "offset" based on the current page being viewed by the user.

So, let's see pagination in laravel 8, laravel pagination next previous, customize next and previous pagination link in laravel 8, and how to create pagination in laravel 8.

If you only need to display simple "Next" and "Previous" links on your website, then you can use the simplePaginate() method to perform a single, efficient query.

Example 1:

1. create a controller and add the below code.

<?php
 
namespace App\Http\Controllers;
 
use Illuminate\Http\Request;
use App\Post;
 
class PostController extends Controller
{
    
    public function index()
    {
        $posts = Post::simplePaginate(10);
 
        return view('posts.index', compact('posts'));
    }
}

 

 

2. create a blade file.

<html>
   <head>
      <title>Next Previous Link Button Pagination Laravel - Techsolutionstuff</title>
      <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"/>
   </head>
   <body>
      <div class="container">
 
         <h1>Next Previous Link Button Pagination Laravel - Techsolutionstuff</h1>
 
         <table class="table table-bordered">
            <tr>
               <th>ID</th>
               <th>Title</th>
            </tr>
 
            @if(!empty($posts))
               @foreach($posts as $post)
               <tr>
                  <td>{{ $post->id }}</td>
                  <td>{{ $post->title }}</td>
               </tr>
               @endforeach
            @endif
         </table>
 
         @if(!empty($posts))
         <div class="paginationWrapper">
            {{ $posts->links() }}
         </div>
         @endif
      </div>
   </body>
</html>

 

Example 2:

In this example, we will create custom pagination.

@if(isset($posts))
   @if($posts->currentPage() > 1)
      <a href="{{ $posts->previousPageUrl() }}">Previous</a>
   @endif
 
   @if($posts->hasMorePages())
      <a href="{{ $posts->nextPageUrl() }}">Next</a>
   @endif
@endif

 


You might also like :

RECOMMENDED POSTS

FEATURE POSTS