Laravel Tutorials

Incorporating URL Fragments in Laravel's Pagination

Published
Incorporating URL Fragments in Laravel's Pagination image

Laravel's pagination system includes a powerful fragment() method that enables you to append URL fragments to pagination links. This feature proves particularly useful when directing users to specific sections of your page during navigation.

The fragment() method seamlessly integrates with Laravel's pagination system:

$users = User::paginate(15)->fragment('users');

When rendered, these pagination links will automatically include '#users' in their URLs, directing users to the appropriate section of your page.

The fragment() method becomes particularly valuable when handling multiple content sections or complex navigation structures:

class ContentController extends Controller
{
public function index(Request $request)
{
$activeSection = $request->section ?? 'recent';
 
return View::make('content.index', [
'posts' => Post::latest()
->paginate(10)
->fragment("section-{$activeSection}"),
'activeSection' => $activeSection
]);
}
}
// views/content/index.blade.php
<div id="section-{{ $activeSection }}">
@foreach ($posts as $post)
<!-- Post content -->
@endforeach
{{ $posts->links() }}
</div>

Laravel automatically handles the fragment inclusion in your pagination links, generating URLs like /posts?page=2#section-recent. This approach maintains context and scroll position as users navigate through paginated content.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
NativePHP v4: Build Native iOS and Android UI in Blade image

NativePHP v4: Build Native iOS and Android UI in Blade

Read article
Laravel Lock: Distributed Locks for Models and Routes image

Laravel Lock: Distributed Locks for Models and Routes

Read article
Laravel Image Responses: Serve Resized Images From Routes image

Laravel Image Responses: Serve Resized Images From Routes

Read article
Pause All Laravel Queues During a Deploy image

Pause All Laravel Queues During a Deploy

Read article
Laravel Terminal UI for the artisan dev Command image

Laravel Terminal UI for the artisan dev Command

Read article
Pause All Queues and a New artisan dev UI in Laravel 13.25 image

Pause All Queues and a New artisan dev UI in Laravel 13.25

Read article