コード例 #1
0
ファイル: UsersController.php プロジェクト: afolson/crap
 public function index()
 {
     $users = User::take(10)->with('checkins', 'checkins.place')->get();
     return $this->respondWithCollection($users, new UserTransformer());
 }