Level 16
Have you tried passing a value? ->paginate(10)
I am struggling with 'notifications' .
I want to use notification pagination in livewire component.
class RightMenu extends Component
{
use WithPagination;
public function render()
{
$notifications = Auth::user()->notifications->paginate();
}
}
It cause error .
livewire Illuminate\Notifications\DatabaseNotificationCollection::paginate does not exist.
I can not find any references on document.
How can I paginate database notification collection?
Please or to participate in this conversation.