learn-laravel-with-example

Learn laravel with example

Hello World, Welcome to Laravel tutorial series Learn laravel with example. In this series, we will learn laravel with example project. Todo list will be our example project. In this project, we will perform the basic function like create, read, update and delete with laravel and MySQL database. We will learn following concept in this article.

  • MVC concept
  • Introduction of Laravel
  • Todo list project overview

I have divided this tutorial series in following parts.

Let’s start our journey for Laravel tutorial.

  • MVC

According to Wikipedia

Model–view–controller is an architectural pattern commonly used for developing user interfaces that divides an application into three interconnected parts. This is done to separate internal representations of information from the ways information is presented to and accepted from the user. The MVC design pattern decouples these major components allowing for efficient code reuse and parallel development.

  • Introduction of Laravel

According to Laravel’s official website

Laravel is a web application framework with expressive, elegant syntax. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, and caching. Laravel aims to make the development process a pleasing one for the developer without sacrificing application functionality. Happy developers make the best code.

In the next article of this series, we will setup laravel on local environment and create hello world app with laravel.

Leave a Reply

Your email address will not be published. Required fields are marked *