프로그래밍/Laravel5
Laravel - HTTP Response(Json변환)
도꼬
2017. 8. 20. 15:27
반응형
라라벨에서 간단히 배열 -> Json형식 변환
Route::get('hello/json',function(){
$data = ['name' => 'Name', 'gender' => 'Man'];
return response()->json($data);
});
http://homestead.app/hello/json
반응형