How to Passing Data to Views ?
Answer / 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 |
How to bind a service container to a service provide.
Name databases supported by laravel.
Explain some benefits of laravel over other php frameworks.
What are system requirement for laravel 5.0?
What is rate limiting?
Explain me how to assign multiple middleware to laravel route ?
What is design pattern in laravel?
What is lts in laravel?
What do you mean by laravel dusk?
What are the operations perfom while Connecting the Database ?
How install react js in laravel?
Tell me what is official website url of laravel?