20 lines
306 B
PHP
Executable File
20 lines
306 B
PHP
Executable File
<?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();
|
|
|
|
}
|