Following are steps to install laravel in localhost server: Step 1: Visit the following URL and download composer to install it on your system. https://getcomposer.org/download/ Step 2: Open command prompt and browse to web server root directory or localhost folder (Assuming you have installed WAMP server in C:\wamp , open C:\wamp\www). Step 3: Type the following … Continue reading Laravel Installation
Day: February 11, 2018
Followings are list of basic Concepts in Laravel: Routing Controllers Views Blade templating Requests and Responses Models & Migrations Middleware Eloquent ORM Routing: Routing means to accept the request and redirect it to appropriate function. Routing is a core concept in Laravel, and it works a little differently than some of the frameworks of the … Continue reading Laravel Basic Concepts