We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67ecb96 commit 48325aeCopy full SHA for 48325ae
README.md
@@ -32,11 +32,25 @@ First, let's supposing I want to generate CRUD for all table in my db.
32
So, we run
33
34
```sh
35
-php artisan make:crud All
+php artisan make:crud --all
36
```
37
38
No further options required. Your setup is complete!
39
40
+
41
+### Interactive mode
42
43
+You can manage a single table with interactive mode or manually (see below).
44
45
+Just run
46
47
+```sh
48
+php artisan make:crud --interactive
49
+```
50
51
+Crud generator will ask you several data (Name of resource, Table name and use of timestamps).
52
53
54
### Managing a single db table
55
56
Now i suppose generation of CRUD operations of Car db table.
0 commit comments