laravel5-jsonapi
laravel5-jsonapi copied to clipboard
Laravel 5 JSON API Transformer Package
Setup is the latest version of Lumen with [mongodb](https://github.com/jenssegers/laravel-mongodb). I'm 99% sure I have everything setup right from your example and I get: Fatal error: Call to a member function...
Hello, I discovered Laravel and Lumen. I want to create a clean API. I would like to implement JSON API. I tested your library. I discovered some errors in the...
The properties are properly hidden when you access the resource directly, but not when it is in the "included" section. Tested on Laravel 5.2.
There are some errors that raise in classes under \NilPortugues\Api\JsonApi\Server\Actions\ namespace get method on the catch block. This errors sometimes gives only "Bad Request, Request could not be served." error...
All resources in the included section are devoid of their "relationship" section.
Is relational sorting implemented ? if so, is there documentation. ``` http://localhost/api/v3/listing?sort=client.id ``` http://jsonapi.org/format/#fetching-sorting "It is recommended that dot-separated (U+002E FULL-STOP, ".") sort fields be used to request sorting based...
It would be useful to alter just a couple of behaviours if the app debug mode is set to true, as it would be during development: - Don't cache the...
In the data section of the response the links->self->href base ref is http://127.0.0.1:8080, however in the links sections of the response self->href base ref is http://mydomain. Where does this link...
I am trying to implement this with a Lumen application, and I get the following exception: ``` "exception": { "type": "FatalThrowableError", "file": "JsonApiTrait.php", "line": 74, "message": "Fatal error: Call to...
Hi, Is there an example anywhere for relationships with this package and being able to call them with ?include=[relationship]? Thanks.