You need to add pagination link in your blade file.
{{ $blogs->links() }}
I added the paginate method to my code (5 posts per page), but when I go onto the next page it shows the numbers from 1 to 5, even though they should be from 6 to 10. This is my index.blade.php:
<table class="table table-bordered">
<tr>
<th>No</th>
<th>Title</th>
<th>Description</th>
<th width="100px">Action</th>
</tr>
@foreach ($blogs as $i => $blog)
<tr>
<td>{{ $i+1 }}</td>
<td>{{ $blog->title }}</td>
<td>{{ $blog->description }}</td>
<td>
<a class="btn btn-primary" href="{{ route('blogs.show',$blog->id) }}">Show</a>
</tr>
@endforeach
</table>
@Sinnbeck I deleted that code and put {{ $blog->id }} instead of it. thank you for your input!
Please or to participate in this conversation.