laravel lumen crud wizard decorator #52035
Replies: 3 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
-
The UI dynamic url query builder is available in the demo page: |
Beta Was this translation helpful? Give feedback.
-
Added new feature: Allow upsert on one to one relations on resource update. This means that a one to one relation can be updated on the resource. All restrictions for updating are applied on all relations. Example; BODY {
"parentID": 1,
"clientFullName": "Dr. Josephine Streich PhD"
} RESPONSE {
"success": true,
"code": 200,
"locale": "en",
"message": "Updated operation 3748918",
"data": {
"ID": 3748918,
"parentID": 1,
"clientID": 68378,
"operationCurrency": "EUR",
"operationValue": "27.00",
"updatedAt": "2024-12-02 15:02:11",
"createdAt": "2024-01-17 11:04:57",
"parentClientID": 1,
"parentOperationCurrency": "EUR",
"parentOperationValue": "10.00",
"parentUpdatedAt": null,
"parentCreatedAt": "2024-01-03 19:39:02",
"clientFullName": "Dr. Josephine Streich PhD",
"clientIsActive": 1,
"clientUpdatedAt": "2024-12-02 15:02:05",
"clientCreatedAt": "2024-01-17 09:33:08",
"hasProducts": true,
"pki": "3748918"
}
} |
Beta Was this translation helpful? Give feedback.
-
In addition to #49577 we gladly present https://github.com/macropay-solutions/laravel-lumen-crud-wizard-decorator.
This is a layer between javascript (FE) and laravel crud wizard that returns decorated/composed data always under 200 http status code with actual status in the body of the response, to ease JS response processing.
Beta Was this translation helpful? Give feedback.
All reactions