Issues I'm Facing: 1. First Attempt (Standard Pagination): - Using
{{ $evidencias->links() }}
{{ $evidencias->links() }}
works functionally - Issues: - Design doesn't match Filament's style - Full page refreshes cause scroll jumps 2. Second Attempt (Filament Pagination Component): - Using
: - Pros: Perfect design match with Filament - Errors: Throws Livewire errors when clicking:
Livewire\Exceptions\MethodNotFoundException PHP 8.1.32 10.48.29Unable to call component method. Public method [gotoPage] not found on componentUnable to call component method. Public method [previousPage] not found on component
Livewire\Exceptions\MethodNotFoundException PHP 8.1.32 10.48.29Unable to call component method. Public method [gotoPage] not found on componentUnable to call component method. Public method [previousPage] not found on component
How can I implement pagination in a ViewRecord page that: - Uses Filament's styled pagination component - Properly handles page navigation without Livewire errors - Maintains smooth UX without full page refreshes? I've checked the Filament Pagination docs but they seem focused on component. Thank you in advance for your help