Posts

Showing posts from February, 2020

LARAVEL BASIC

Laravel is a web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things. 1. Laravel aims to make the development process a pleasing one for the developer without sacrificing application functionality. Happy developers make the best code. To this end, we've attempted to combine the very best of what we have seen in other web frameworks, including frameworks implemented in other languages, such as Ruby on Rails, ASP.NET MVC, and Sinatra. 2. MVC (Model View Controller) -  MVC is a software architecture pattern and it stands for Model View Controller.  It represents architecture developers adopt when building applications. With the MVC architecture, we look at the application structure with regards to how the data flow of our application works.  MVC is a software architecture  that separates domain/application/business…logic from the rest of the user interface. It does this by...