Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ribafs2 authored Jun 21, 2024
1 parent d505a50 commit 53988ed
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,22 @@ This Generator package provides various generators like CRUD, API, Controller, M

## Installation
```
composer require ribafs/crud-generator --dev
composer require appzcoder/crud-generator --dev
php artisan vendor:publish --provider="Appzcoder\CrudGenerator\CrudGeneratorServiceProvider"
Wzwmplo
php artisan crud:generate Posts --fields='title#string; body#text;' --controller-namespace=App\\Http\\Controllers --form-helper=html
Route::resource('/posts', 'App\Http\Controllers\PostsController');
php artisan route:clear
php artisan migrate
php artisan serve
http://127.0.0.1:8000/posts
```

## Documentation
Expand Down

0 comments on commit 53988ed

Please # to comment.