Pagination with Livewire
Hi there,
I'm trying to create Livewire table and all the styling is working fine except the pagination links()
Pagination style is broken on Livewire. does anyone have any idea, what would be a fix to this?
Solution:Jump to solution
try this
<x-filament::pagination wire:click="reload" :paginator="$posts"/>...
4 Replies
Please update filament, then run php artisan filament:upgrade
I did that too, the default filament pagination works fine. only the links() on livewire page are broken
Solution
try this
<x-filament::pagination wire:click="reload" :paginator="$posts"/>
thank you so much, that fixed the issue