paginate posts
I have a custom page
public function mount(): void
{
$this->posts = Post::latest()->paginate(10);
}
The result with pagination:
No posts found.
Can someone guide me here....
Solution:Jump to solution
mno but I solved the problem to use this in the view page
<x-filament::pagination wire:click="reload" :paginator="$posts"/>...
2 Replies
Would you like to add the table builder in the custom page?
https://filamentphp.com/docs/3.x/tables/adding-a-table-to-a-livewire-component#adding-the-table
Solution
mno but I solved the problem to use this in the view page
<x-filament::pagination wire:click="reload" :paginator="$posts"/>