Skip to content

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

do not log error on model not found

25 Jun 05:47
Compare
Choose a tag to compare
3.1.4

do not log error on model not found

fix maria db

21 Jun 13:40
Compare
Choose a tag to compare
3.1.3

fix maria db

Update Readme and suggest

13 Jun 08:45
Compare
Choose a tag to compare
3.1.2

Adding suggest

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