반응형
라라벨에서 간단히 배열 -> Json형식 변환
Route::get('hello/json',function(){
$data = ['name' => 'Name', 'gender' => 'Man'];
return response()->json($data);
});
http://homestead.app/hello/json
반응형
'프로그래밍 > Laravel5' 카테고리의 다른 글
Laravel - Blade Template (0) | 2017.08.20 |
---|---|
Laravel - Views (0) | 2017.08.20 |
Laravel - HTTP Response 처리 (0) | 2017.08.20 |
Laravel - URL 라우팅 방법 (0) | 2017.08.20 |
Laravel 개발환경 - 4. 라라벨 프로젝트 생성 (0) | 2017.08.20 |