I want to have clean URL and my table was working fine untill I update the Livewire now my table is adding query string like ?page=2 from page no2
all code is same like before, after searching I have add this in Livewire controller namespace App\Http\Livewire;
use Livewire\Component;
use Livewire\WithPagination;
class ContactsTable extends Component
{
use WithPagination;
protected $paginationTheme = 'bootstrap';
protected $paginationQueryStringEnabled = false;
but its still showing Query String in URL how can I disable this?
Thanks