コード例 #1
0
ファイル: ProfileService.php プロジェクト: edisonthk/cv_api
 public function all($limit, $offset = 0)
 {
     return Profile::orderBy("updated_at", "desc")->where("is_public", "=", 1)->take($limit)->skip($offset)->get();
 }