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
What are route parameters?
What is name route in laravel?
What is faker in laravel?
Explain how to share your homestead with others?
What are the operations perfom while Connecting the Database ?
What are the benefits of laravel?
How to use ajax in any form submission?
Name aggregates methods of query builder.
What do you mean by make() method?
What is laravel framework?
How much laravel experience do you have?
Tell me how to set database connection in laravel?
What is facade and how it is used in laravel?
Explain me what directories that need to be writable laravel installation?
How to enable maintenance mode in laravel 5?