What is meant by Attaching Headers ?

Answer Posted / surbhi

The response can be attached to headers using the header() method.

We can also attach the series of headers as shown in the below sample code.

return response($content,$status)
->header('Content-Type', $type)
->header('X-Header-One', 'Header Value')
->header('X-Header-Two', 'Header Value');

Example : Route::get('/header',function(){
return response("Hello", 200)->header('Content-Type', 'text/html');
});

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are route parameters?

528


What is name route in laravel?

525


What is faker in laravel?

534


Explain how to share your homestead with others?

490


What are the operations perfom while Connecting the Database ?

1242


What are the benefits of laravel?

506


How to use ajax in any form submission?

509


Name aggregates methods of query builder.

553


What do you mean by make() method?

524


What is laravel framework?

560


How much laravel experience do you have?

534


Tell me how to set database connection in laravel?

502


What is facade and how it is used in laravel?

490


Explain me what directories that need to be writable laravel installation?

497


How to enable maintenance mode in laravel 5?

509