From 07c2ff3ed91aa17588efaf8c71aa09cb616da344 Mon Sep 17 00:00:00 2001 From: omides327 Date: Sun, 4 Sep 2022 16:53:04 +0430 Subject: [PATCH] Update Documents --- docs/make-module.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/make-module.md b/docs/make-module.md index bd9f182..1919959 100755 --- a/docs/make-module.md +++ b/docs/make-module.md @@ -2,6 +2,20 @@ To make modules use the artisan command php artisan make:moudle ModuleName to create a module called blog: + +# Flags + +| Name | Description | +| --- | --- | +| full | Full structure | +| normal | Normal structure | + + +``` bash +php artisan make:module blog --full +``` +Or + ``` bash php artisan make:module blog --normal ```