You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
8 years ago | |
|---|---|---|
| src | 8 years ago | |
| tests | 8 years ago | |
| .gitignore | 8 years ago | |
| .travis.yml | 8 years ago | |
| LICENSE | 8 years ago | |
| composer.json | 8 years ago | |
| phpunit.xml | 8 years ago | |
| readme.md | 8 years ago | |
readme.md
Laravel Simple CRUD Generator
An artisan make:crud command to create a simple CRUD feature on your Laravel 5.4 application.
Development in progress
About this package
With this package installed on local environment, we can use (e.g.) php artisan make:crud Item command to generate some files :
- App\Item.php eloquent model
- ItemsController.php in
app/Http/Controllersdirectory - create_items_table.php migration file
- index.blade.php view file in
resources/views/itemsdirectory - forms.blade.php view file in
resources/views/itemsdirectory - ManageItemsTest.php feature test class in
tests/Featuredirectory - ItemTest.php unit test class in
tests/Unit/Modelsdirectory
How to install
TODO
How to use
TODO