Skip to content

Releases: macropay-solutions/laravel-crud-wizard-free

Adding model attributes autocomplete to model - cr

12 Jun 20:02
Compare
Choose a tag to compare

Adding model attributes autocomplete to model - cr

Adding model attributes autocomplete to model

12 Jun 16:37
Compare
Choose a tag to compare

Adding model attributes autocomplete to model

Update composer json

25 May 07:48
dc7deed
Compare
Choose a tag to compare
3.0.1

Update composer.json

fix-upsert-validation

22 May 13:44
Compare
Choose a tag to compare

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

14 May 16:53
Compare
Choose a tag to compare
2.0.1

update reserved words check

Update list: add basic filtering and multi sort on the resource's columns

13 May 08:37
Compare
Choose a tag to compare
2.0.0

update list: add basic filtering and multi sort on the resource's col…

Fix cursor last page

25 Apr 13:02
Compare
Choose a tag to compare
1.1.3

fix cursor

Added suggest in composer

17 Apr 06:05
bb70d86
Compare
Choose a tag to compare
1.1.2

Update composer.json

Added suggest in composer

31 Mar 19:53
Compare
Choose a tag to compare
1.1.1

add-composer-suggest

Add cursor pagination support

26 Mar 12:15
Compare
Choose a tag to compare
1.1.0

add-cursor-paginate