コード例 #1
0
ファイル: ModelRepository.php プロジェクト: siegessa/uzem
 /**
  * Get a paginated list of all models.
  *
  * @param int $howMany
  * @return mixed
  */
 public function getPaginated($howMany = 1000)
 {
     return Department::orderBy('id', 'desc')->paginate($howMany);
 }