Skip to content

Commit 9132c5f

Browse files
committed
[EH] update changelog and readme
1 parent 2348da8 commit 9132c5f

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
2121
### Security
2222
- Nothing
2323

24-
## 2.0.0 - 2018-03-21
24+
## 2.0.0 - 2018-03-23
2525

2626
### Added
2727
- `LanguageService` generates models.php translation file (if not exists) and fill singular/plural translation
@@ -32,6 +32,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
3232

3333
- `BackpackCrudModelService` will fill `$fillable` in Model automatically from scheme (if given)
3434
- `BackpackCrudRequestService` will fill `rules()` in Request automatically from scheme (if given)
35+
- `BackpackCrudControllerService` will add CrudFields and CrudColumns in Controller automatically from scheme (if given) - very rudimentary for now, more functionality planned
3536

3637
## 1.2.0 - 2018-03-18
3738

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,17 @@ composer require-dev webfactor/laravel-generators
2626
php artisan make:entity {entity_name} {--schema=} {--ide=}
2727
```
2828

29+
`--schema` currently uses syntax from [Laravel 5 Extended Generators](https://github.com/laracasts/Laravel-5-Generators-Extended)
30+
2931
Use *singular* for entity. This will automatically create (while respecting our internal naming conventions):
3032

3133
* Migration
3234
* Factory
3335
* Seeder
3436
* Backpack CRUD (modified Backpack Generator):
35-
* Model
36-
* Request
37-
* Controller
37+
* Model (incl. `$fillable`)
38+
* Request (incl. `rules()`)
39+
* Controller (incl. CrudColumns and CrudFields, basic for now)
3840
* Language File
3941
* Route to Backpack CRUD in admin.php
4042

0 commit comments

Comments
 (0)