From d941fd9f65a64e64bcce86347401d70563d4c9f4 Mon Sep 17 00:00:00 2001 From: Marcel Pociot Date: Sun, 22 May 2016 20:39:17 +0200 Subject: [PATCH] Mention scaffolding in README --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index d080404..0735b3e 100644 --- a/README.md +++ b/README.md @@ -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) @@ -139,6 +140,27 @@ composer dump-autoload ## Usage + +### 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. + ### Basic concepts