Answer Posted / rachana devi
While building application it may be required to pass data to the views.
Pass an array to view helper function.
After passing an array, we can use the key to get the value of that key in the HTML file.
Example :
Observe the following example to understand more about passing data to views -
Copy the following code and save it at resources/views/test.php
<html>
<body>
<h1><?php echo $name; ?></h1>
</body>
</html>
Add the following line in app/Http/routes.php file to set the route for the above view.
app/Http/routes.php
Route::get('/test', function(){
return view('test',[‘name’=>’Virat Gandhi’]);
});
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is helper in laravel?
What encryption does laravel use?
Explain laravel service container?
What is chunk in laravel?
What is laracasts?
List the default ports that are forwarded to your homestead environment?
Explain response in laravel.
How to redirect user with flashed session data in laravel?
Tell me why doesn't laravel use semantic versioning?
What is a laravel controller?
How do laravel facades work?
How can we use middleware in laravel?
Explain laravel query builder?
What is service container in laravel?
Does laravel use mvc?