#5 Laravel Views

#5 Laravel Views

Why Laravel Views?

Views are one of the major part of MVC (Model-View-Controller) architecture. In our previous lecture, we've learned about laravel controllers, now to write our design in a web page, we might not make that in controller. We definitely make that in a view file, which is actually an html file. We then write the frontend design there.

 

 

Laravel Views official Documentation - https://laravel.com/docs/7.x/views

 

Previous
#4 Controllers in Laravel