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
mno but I solved the problem to use this in the view page
<x-filament::pagination wire:click="reload" :paginator="$posts"/>
Was this page helpful?