How to get current URL in Livewire component
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.