Releases: macropay-solutions/laravel-crud-wizard-free
Adding model attributes autocomplete to model - cr
Adding model attributes autocomplete to model - cr
Adding model attributes autocomplete to model
Adding model attributes autocomplete to model
Update composer json
3.0.1 Update composer.json
fix-upsert-validation
This fix will handle properly only the dirty properties on update and will not validate primary keys or other fields that have validations with unique in table, that are in the body of the request for create(upsert) if model not found. On create (including upsert) all request payload will be subjected to validation.
Note:
Until now, the external update, delete or create were forbidden by throwing an exception in the service.
From now on there will be these properties in the controller that need to be extended:
protected bool $forbidCreate = false;
protected bool $forbidGet = false;
protected bool $forbidList = false;
protected bool $forbidUpdate = false;
protected bool $forbidDelete = true;
Also now BaseResourceService class will have a working delete function instead of the old version when it threw exception with Forbidden message.
Update reserved words check
2.0.1 update reserved words check
Update list: add basic filtering and multi sort on the resource's columns
2.0.0 update list: add basic filtering and multi sort on the resource's col…
Fix cursor last page
1.1.3 fix cursor
Added suggest in composer
1.1.2 Update composer.json
Added suggest in composer
1.1.1 add-composer-suggest
Add cursor pagination support
1.1.0 add-cursor-paginate