Introduction to Laravel
First of all, what is Laravel? Laravel is an open-source PHP Framework, it helps you to develop a web application in a faster and cleaner way. Laravel framework is one of the best framework out there, it easy to understand and laravel provides a good documentation for the available commands and functions you can use.
Laravel uses MVC(Model-View-Controller) paradigm well talk it in other articles or videos for the detailed of MVC. But for now, I'll explain the basic of Laravel structure. In model, all of your logic for database is located here for example you have User class that has many posts you can put it in your Model class. For the View, this is where the user interface comes in, the design, input boxes, dropdown list etc. And for the Controller, this where your logic goes this also provides the interface between Model and View, for example what data would process and ready for rendering or viewing.
Summary is Laravel framework helps you to ease the development of web application.
Next Topic: Installation of Laravel
First of all, what is Laravel? Laravel is an open-source PHP Framework, it helps you to develop a web application in a faster and cleaner way. Laravel framework is one of the best framework out there, it easy to understand and laravel provides a good documentation for the available commands and functions you can use.
Laravel uses MVC(Model-View-Controller) paradigm well talk it in other articles or videos for the detailed of MVC. But for now, I'll explain the basic of Laravel structure. In model, all of your logic for database is located here for example you have User class that has many posts you can put it in your Model class. For the View, this is where the user interface comes in, the design, input boxes, dropdown list etc. And for the Controller, this where your logic goes this also provides the interface between Model and View, for example what data would process and ready for rendering or viewing.
Summary is Laravel framework helps you to ease the development of web application.
Next Topic: Installation of Laravel
Comments
Post a Comment