laravel5-jsonapi
laravel5-jsonapi copied to clipboard
Laravel 5 JSON API Transformer Package
1) Employees connected to mysql and Orders connected to postgres. It`s possible? 2) Laravel / Lumen 5.4 supported? Thanks
Release notes are located here: https://laravel.com/docs/5.3/releases Is anybody currently working on this?
To enable server-side processing of attribute values, [Eloquent mutators](https://laravel.com/docs/5.2/eloquent-mutators#accessors-and-mutators) could be used. To enable them for e.g. relationships they have to be included in the class properties. This pull request...
api-transformer got updated to PHP 7, resulting to incompatibility with this package, because php-json-api requires `"nilportugues/api-transformer": "^3.0.0",` in it's package.json
MappingException in MappingFactory.php line 302: Could not add required property 0 in class App\Booking because it does not exist. Based on the code on MappingFactory.php line 302 the keys of...
Included or not included relationship request takes the same time to query. It would be great if none included relationship is completely excluded in the request stack.
Where can i define the default page[size] without using ```/employees?page[number]=1&page[size]=10``` but in the controller, model or mapping?
` public function getRequiredProperties() { return ['department', 'dept_floor_id']; } ` results in: ``` MappingException in MappingFactory.php line 318: Could not add required property 0 in class App\Models\Department because it does...
I'm trying to format the date properties on my models to conform to ISO 8601 by using the $dateFormat property on the model classes. When I override this property in...