Skip to content

bitlather/laravel-learn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

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