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...


How to Passing Data to Views ?



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

Post New Answer

More Laravel PHP Framework Interview Questions

In which directory controllers are kept in laravel?

0 Answers  


What is laravel trait?

0 Answers  


What is csrf_field () in laravel?

0 Answers  


How to get cookies in laravel?

0 Answers  


What is dependency injection in laravel?

0 Answers  


Tell me does laravel support php 7?

0 Answers  


What is laravel elixir?

0 Answers  


How to make a custom validation rule in laravel?

0 Answers  


What is localization?

0 Answers  


What is x-csrf-token , how it is different from csrf tokens?

0 Answers  


What is remember token in laravel?

0 Answers  


Do you know what is php artisan.

0 Answers  


Categories