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

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article