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

what is meant by Views ?

Answer Posted / surbhi

In MVC framework, the letter V stands for Views.
It separates the application logic and the presentation logic.
Views are stored in resources/views directory.
Generally, the view contains the HTML which will be served by the application.

Example : Copy the following code and save it at resources/views/test.php
<html>
<body>
<h1>Hello, World</h1>
</body>
</html>

Add the following line in app/Http/routes.php file to set the route for the above view.

Route::get('/test', function(){
return view('test');
});

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of route in laravel?

738


What is meant by Modularity ?

865


How to generate pretty urls in laravel?

822


What is helper in laravel?

760


Is any server permissions required for laravel?

779


Explain short brief on Facades in Laravel ?

1465


What is laravel?

783


what is meant by Views ?

1471


Is laravel better than wordpress?

781


What are advantages of laravel?

805


What is the use of dd() function?

749


What is meant by check method ?

1778


What is your favorite feature of laravel?

776


Tell me how to use select query in laravel?

805


How to Storing Session Data in Laravel ?

1503