Laravel is a PHP based open source framework and its easy to learn
Initialize the composer in the directory we want to create Laravel Web Application Projects
Database Configuration in Laravel
Database can be config in config/database.php in this file. Laravel supports
MySql, PosterSql
Getting Starts Laravel in Terminal by the following commands
composer create-project laravel/laravel –-prefer-dist
Naming the Application
php artisan app:name <name-of-your-web applications>
Run the Application
php artisan serveLaravel have a amazing feature for Maintainance Mode for our Web Applications just like CMS (Drupal, Wordpress)
php artisan down
php artisan up