<?php
namespace IlluminateContractsPagination;
interface Presenter
{
/**
* Render the given paginator.
*
* @return IlluminateContractsSupportHtmlable|string
*/
public function render();
/**
* Determine if the underlying paginator being presented has pages to show.
*
* @return bool
*/
public function hasPages();
}