All Notable changes to Backpack Generators
will be documented in this file
- Nothing
- Nothing
- Nothing
- Nothing
- Nothing
- cleaner service provider;
- annotation to allow IDEs to autocomplete the code when referencing
$crud
;
- table now is now pluralized correctly (for English names);
- crud model is now generated with $table and $fillable uncommented;
- CrudRequest is no longer needed, so generated form requests now extend
Illuminate\Foundation\Http\FormRequest
;
- Laravel 5.5 support (handle() alias for fire());
- Package auto-discovery;
- calls to CrudController::storeCrud() and CrudController::updateCrud() now pass the $request as parameter - just in case you modified it in the setup() in any way;
- more removeButton methods to CrudController stub;
- CrudController setup method name (no uppercase letters);
- using single quotes instead of double quotes for class names;
- using the configured admin prefix;
- better entity name pluralization;
- laracasts/generators dependency; it's NOT a Backpack\Generators dependency, it's a Backpack\Base dependency;
- laracasts/generators dependency;
- Updated controller stub with new features;
- Replaced constructor in controller with setup();
- Working bogus unit tests.
- Bogus unit tests. At least we'be able to use travis-ci for requirements errors, until full unit tests are done.
- ajax table view command for CrudControllers
- Generators for CRUD files: backpack:crud, backpack:crud-request, backpack:crud-model and backpack:crud-controller