April 2015
Beginner
144 pages
3h 13m
English
Now that we have the blueprints for the application, let's roll up our sleeves and start writing some code.
Start by opening a new terminal window and launch Homestead:
$ homestead ssh
Navigate to the directory you have mapped to Homestead (by default this is ~/Code):
$ cd ~/Code
Then use Composer to create a new Laravel project, as follows:
$ composer create-project laravel/laravel furbook.com --prefer-dist $ cd furbook.com
Once Composer finishes downloading Laravel and resolving its dependencies, you will have a directory structure identical to the one presented in the first chapter.
Applications in Laravel are namespaced. By default, this is just App—Laravel's great, but it still can't ...
Read now
Unlock full access