Spatie\PaginateRoute\PaginateRoute::renderHtml PHP Метод

renderHtml() публичный Метод

Устаревший: in favor of renderPageList.
public renderHtml ( Illuminate\Contracts\Pagination\LengthAwarePaginator $paginator, boolean $full = false ) : string
$paginator Illuminate\Contracts\Pagination\LengthAwarePaginator
$full boolean Return the full version of the URL in for the first page Ex. /users/page/1 instead of /users
Результат string
    public function renderHtml(LengthAwarePaginator $paginator, $full = false)
    {
        return $this->renderPageList($paginator, $full);
    }