1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
namespace Illuminate\Contracts\Pagination;
interface LengthAwarePaginator extends Paginator { /** * Determine the total number of items in the data store. * * @return int */ public function total();
/** * Get the page number of the last available page. * * @return int */ public function lastPage(); }
|