20 lines
306 B
PHP
20 lines
306 B
PHP
|
<?php namespace Illuminate\Contracts\Pagination;
|
||
|
|
||
|
interface Presenter {
|
||
|
|
||
|
/**
|
||
|
* Render the given paginator.
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function render();
|
||
|
|
||
|
/**
|
||
|
* Determine if the underlying paginator being presented has pages to show.
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function hasPages();
|
||
|
|
||
|
}
|