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 ?

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


Please Help Members By Posting Answers For Below Questions

What route model binding?

731


Explain the difference between laravel 4 and laravel 5?

794


What are string and array helpers functions in laravel?

788


What is validation in laravel and how it is used?

694


Explain automatic injection in laravel?

757


What are the difference between insert() and insertgetid() in laravel?

823


What is kernel in laravel?

796


what is meant by CSRF Protection in Laravel ?

1774


How to use delete statement in laravel?

745


I just installed laravel and have the evil whoops error,how do I find out what’s wrong and fix it?

694


What is meant by Authorization Mechanism in Laravel ?

1688


Explain the concept of encryption and decryption in laravel.

735


What are accessors and mutators in eloquent and why should you use them?

661


Is laravel built on symfony?

680


What is use keyword in laravel?

730