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 ?

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

How to create custom library in laravel?

717


What are the directory structure of laravel 5.8?

655


Define hashing in laravel.

681


What is views in laravel?

684


Tell us have you used lumen before?

686


What is database migration in laravel? How to use this?

652


What is database seeding in laravel?

719


What are laravel contract’s?

678


What route model binding?

684


What is route parameters in laravel?

732


Laravle supports which databases?

712


How to install laravel via composer?

694


What is the use of dd() function?

650


what is implementation measures in CSRF Protection ?

1155


Do you know what is php artisan. List out some artisan commands?

687