Level 3
Guys, somebody faced this before?
Hi guys. I'm facing this tiny issue when I'm using livewire pagination and render it in both table position (top and botton) like
{{ $connections->links() }}
<table>
//.....
</table>
{{ $connections->links()}}
That's working, but on every re-render (I have a group of filters for datagrid's search) the top links() don't updated well as the bottom. I also have the resetPage() method on updated method.
public function udpated()
{
$this->resetPage();
}
What's happend??? How I can solve this??? Thx in advance
Please or to participate in this conversation.