Devise\Support\DevisePaginator::make PHP Method

make() public method

Create paginator
public make ( Illuminate\Support\Collection $collection, integer $total, integer $perPage ) : string
$collection Illuminate\Support\Collection
$total integer
$perPage integer
return string
    public function make($collection, $total, $perPage)
    {
        return new LengthAwarePaginator($collection, $total, $perPage, Paginator::resolveCurrentPage(), ['path' => Paginator::resolveCurrentPath()]);
    }
DevisePaginator