Ben Borgers

How to get current URL in Livewire component

January 1, 2021

In Laravel, you can get the current URL by running url()->current(). However, Livewire kind of breaks this ā€” after subsequent Livewire requests, the "current URL" will be equal to the internal Livewire URL, not the actual page's URL.

An easy fix for this is to save the current URL when the component first loads, using the mount method. Here's a piece of the Livewire component:

public $currentUrl;

public function mount()
{
    $this->currentUrl = url()->current();
}

Now, you can use $currentUrl in your Livewire component instead of url()->current(), and it will work as expected.

More blog posts

Subscribe to my newsletter for a monthly round-up of new blog posts and projects Iā€™m working on!

Twitter ↗ RSS feed ↗