Example #1
0
 /**
  * get list by paginate
  *
  * @param array $wheres  where conditions
  * @param array $orders  order conditions
  * @param int   $perPage page count
  * @return \Illuminate\Pagination\LengthAwarePaginator
  * @deprecated
  */
 public function paginate($wheres, $orders, $perPage)
 {
     return $this->repo->paginate($wheres, $orders, $perPage);
 }