Example #1
0
 public function index()
 {
     $users = User::take(10)->with('checkins', 'checkins.place')->get();
     return $this->respondWithCollection($users, new UserTransformer());
 }