InterviewSolution
| 1. |
What is Laravel? |
|
Answer» Laravel is a new generation PHP web framework. It’s been developed by Taylor Otwell back in 2011 and intended for the development of web application. It follows the MVC model, that is a SET of classes that do makes developers life easier. it’s been designed with focus to create an application which is simple, elegant and well structured. It’s a free, open-sourced framework with current stable release 5.7. With Laravel DEVELOPER need to think less about setup, architecture, and dependencies of a project and go straight into the project. Laravel has a framework CALLED Lumen which is a micro-framework built on Laravel’s TOP components. It’s a perfect option for building a Laravel BASED microservice application. |
|