Skip to content

Commit c19d718

Browse files
authored
Update README.md
1 parent 0340961 commit c19d718

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
![StyleCI](https://img.shields.io/badge/StyleCI-pass-green.svg?style=flat-square)
77

88

9-
This Laravel CRUD Generator v2.x package provides and generates Controller, Model (with eloquent relations), and Views in **Bootstrap**/**Tailwind CSS** for the development of your applications with a single command. This new `v2.x` will have `--stack` options like `bootstrap`, `tailwind`, `livewire`(Livewire views will be generated in **Tailwind** CSS), and `API` only.
9+
This Laravel CRUD Generator v2.x package provides and generates Controller, Model (with eloquent relations), and Views in **Bootstrap**/**Tailwind CSS** for the development of your applications with a single command. This new `v2.x` will have stack options like `bootstrap`, `tailwind`, `livewire`(Livewire views will be generated in **Tailwind** CSS), and `API` only.
1010

1111
- Will create **Model** with Eloquent relations
1212
- Will create **Controller** with all resources
@@ -68,12 +68,12 @@ Route name in plural slug case.
6868

6969
<img width="535" alt="image" src="https://github.com/awais-vteams/laravel-crud-generator/assets/10154558/c1e2e2a6-7fcd-4c4a-a393-56d8fe6eb231">
7070
```
71-
php artisan make:crud {table_name} --stack={bootstrap,tailwind,livewire,api}
71+
php artisan make:crud {table_name} {bootstrap,tailwind,livewire,api}
7272
73-
php artisan make:crud banks --stack=bootstrap //This will create views in Bootstrap 5 using Blade
74-
php artisan make:crud banks --stack=tailwind //This will create views in Tailwind css using Blade
75-
php artisan make:crud banks --stack=livewire //This will create views in Tailwind css with Livewire components
76-
php artisan make:crud banks --stack=api //This will create API only controllers
73+
php artisan make:crud banks bootstrap //This will create views in Bootstrap 5 using Blade
74+
php artisan make:crud banks tailwind //This will create views in Tailwind css using Blade
75+
php artisan make:crud banks livewire //This will create views in Tailwind css with Livewire components
76+
php artisan make:crud banks api //This will create API only controllers
7777
```
7878
- Custom Route
7979
```

0 commit comments

Comments
 (0)