I have just started with Laravel and I am trying to make a search function with proper pagination. The function works for page one but on pag
For pagination, you should create a simple form:
Pagination methods are here:
$results->count()
$results->currentPage()
$results->firstItem()
$results->hasMorePages()
$results->lastItem()
$results->lastPage() (Not available when using simplePaginate)
$results->nextPageUrl()
$results->perPage()
$results->previousPageUrl()
$results->total() (Not available when using simplePaginate)
$results->url($page)