Skip to content

Commit

Permalink
Mention scaffolding in README
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot committed May 22, 2016
1 parent 8bdbcd5 commit d941fd9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Teamwork is the fastest and easiest method to add a User / Team association with
- [Team](#team)
- [User](#user)
- [Usage](#usage)
- [Scaffoling](#scaffolding)
- [Basic concepts](#basic-concepts)
- [Get to know my team(s)](#know-my-teams)
- [Team owner](#team-owner)
Expand Down Expand Up @@ -139,6 +140,27 @@ composer dump-autoload
<a name="usage" />
## Usage

<a name="scaffolding" />
### Scaffolding

The easiest way to give your new Laravel project Team abilities is by using the `make:teamwork` command.

```bash
php artisan make:teamwork
```

This command will create all views, routes and controllers to make your new project team-ready.

Out of the box, the following parts will be created for you:

* Team listing
* Team creation / editing / deletion
* Invite new members to teams

Imagine it as a the `make:auth` command for Teamwork.

To get started, take a look at the new installed `/teams` route in your project.

<a name="basic-concepts" />
### Basic concepts

Expand Down

0 comments on commit d941fd9

Please sign in to comment.