Pass the $paginator to the view and try this:
<div>
{!! $paginator->render() !!}
</div>
How can i use the following paginator in the blade view?
$paginator = new Paginator($render_data, count($render_data), 5);
Iam passing the $render_data to view, and using it on a @foreach loop
Please or to participate in this conversation.