Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 994 Bytes

13-laravel-features-part-1.md

File metadata and controls

34 lines (23 loc) · 994 Bytes

Laravel Features (Part 1)

Creating a Project

Let's first create a new project:

composer create-project --prefer-dist laravel/laravel purchasing

You may also install a helper for creating new laravel projects by:

composer global require laravel/installer

Then the previous command can then be changed to:

laravel new purchasing

Overview

The instructor will walk you through the Laravel documentation first, afterwards, we'll walk through everything again but the next time, by creating a purchasing module for our project.