/laravel-learn

Learning laravel

Primary LanguagePHP

Summary

The branches in this repo show basic development using Laravel Framework version 4.1.24.

Install Laravel

http://laravel.com/docs/installation

Install composer:

curl -sS https://getcomposer.org/installer | php

Create laravel project:

php composer.phar create-project laravel/laravel --prefer-dist

Run project

Start server:

cd laravel
php artisan serve

View in browser:

http://localhost:8000