Thursday, 3 August 2017

Laravel - Overview


Introduction

Laravel is a MVC framework with bundles, migrations, and Artisan CLI. Laravel offers a robust set of tools and an application architecture that incorporates many of the best features of frameworks like CodeIgniter, Yii, ASP.NET MVC, Ruby on Rails, Sinatra, and others.
Laravel is an Open Source framework. It has a very rich set of features which will boost the speed of Web Development. If you familiar with Core PHP and Advanced PHP, Laravel will make your task easier. It will save a lot time if you are planning to develop a website from scratch. Not only that, the website built in Laravel is also secure. It prevents the various attacks that can take place on websites.

Laravel – Features

Laravel offers the following key features −
  • Modularity
  • Testability
  • Routing
  • Configuration management
  • Query builder and ORM (Object Relational Mapper)
  • Schema builder, migrations, and seeding
  • Template engine
  • E-mailing
  • Authentication
  • Redis
  • Queues
  • Event and command bus

Related Posts:

  • Laravel - Routing Basic Routing Basic routing is meant to route your request to an appropriate controller. The routes of the application can be defined in app/Http/… Read More
  • Laravel - Configuration The config directory, as the name implies, contains all of your application's configuration files. In this directory, you will find various files n… Read More
  • Laravel - Middleware Define Middleware As the name suggest, Middleware acts as a middle man between request and response. It is a type of filtering mechanism. For exam… Read More
  • Laravel - Application Structure Root Directory The root directory of Laravel contains various folders and files as shown in the following figure. app − This directory contains… Read More
  • Laravel - Installation For managing dependencies, Laravel uses composer. Make sure you have a Composer installed on your system before you install Laravel. Step 1 − Visit… Read More

0 comments:

Post a Comment