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...


What is Basic Response in Laravel ?



What is Basic Response in Laravel ?..

Answer / nafees ahmad

Laravel provides several different ways to return response.
Response can be sent either from route or from controller.
The basic response that can be sent is simple string as shown in the below sample code.
This string will be automatically converted to appropriate HTTP response.

Example :
Step 1 - Add the following code to app/Http/routes.php file.
app/Http/routes.php
Route::get('/basic_response', function () {
return 'Hai to One and All';
});

Step 2 - Visit the following URL to test the basic response.

http://localhost:8000/basic_response

Step 3 - The output will appear as shown in your screen.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Laravel PHP Framework Interview Questions

How to use session in laravel?

0 Answers  


What is laravel eloquent?

0 Answers  


Explain how to retrive all requested data in laravel?

0 Answers  


Explain homestead in laravel.

0 Answers  


What is a service supplier?

0 Answers  


Why do we need dependency injection?

0 Answers  


Explain collections in laravel.

0 Answers  


List the applications supported by valet?

0 Answers  


What is laravel boilerplate?

0 Answers  


Where do you locate database configuration file?

1 Answers  


How to check ajax request in laravel?

0 Answers  


Is laravel easy?

0 Answers  


Categories