Skip to content

Commit 48325ae

Browse files
committed
Updated db
1 parent 67ecb96 commit 48325ae

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,25 @@ First, let's supposing I want to generate CRUD for all table in my db.
3232
So, we run
3333

3434
```sh
35-
php artisan make:crud All
35+
php artisan make:crud --all
3636
```
3737

3838
No further options required. Your setup is complete!
3939

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+
4054
### Managing a single db table
4155

4256
Now i suppose generation of CRUD operations of Car db table.

0 commit comments

Comments
 (0)