Hi everyone, I am using Livewire 10 and Livewire 3. I want to change language without refreshing page. Only my change lang button created with Livewire. Other texts are not created with livewire.
public function changeLanguage($lang)
{
session()->put('lang', $lang);
// Get the previous url
$url = url()->previous();
// Redirect to the previous url
return redirect()->intended($url);
}