コード例 #1
0
ファイル: UserController.php プロジェクト: svro/libcore
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     return response()->json(User::orderBy('achternaam')->orderBy('voornaam')->get());
 }