Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to get JSON Response on Laravel ?

Answer Posted / surbhi

JSON response can be sent using the json method.
This method will automatically set the Content-Type header to application/json.
The json method will automatically convert the array into appropriate json response.

Example :

Route::get('json',function(){
return response()->json(['name' => 'Gandhi', 'state' => 'Gujarat']);
});

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Do you know what is method spoofing in laravel?

782


How to enable or disable maintaince mode in laravel.

809


Is laravel built on symfony?

716


Difference between facades vs. Dependency injection?

785


How do I log an error?

740


Explain me active record implementation?

763


What is laravel route?

787


Explain laravel’s middleware?

754


Explain few features of laravel?

758


Explain me what is your favorite feature of laravel?

731


How to use laravel framework in php?

756


What is bearer token?

751


How to Storing Session Data in Laravel ?

1508


In which directory laravel configartion files are kept.

780


What is database migration used in laravel 5? Explain

700