laravel5-jsonapi-dingo icon indicating copy to clipboard operation
laravel5-jsonapi-dingo copied to clipboard

Laravel5 JSONAPI and Dingo together to build APIs fast

Results 6 laravel5-jsonapi-dingo issues
Sort by recently updated
recently updated
newest added

The response I get when trying to install on Laravel 5.6; `composer require nilportugues/laravel5-json-api-dingo Using version ^1.0 for nilportugues/laravel5-json-api-dingo ./composer.json has been updated Loading composer repositories with package information Updating...

I'm getting the following error when trying to use this component: > Type error: Argument 1 passed to NilPortugues\Laravel5\JsonApiDingo\DingoProvider::getRouterCollection() must be an instance of Illuminate\Routing\UrlGenerator, instance of Dingo\Api\Routing\Router given It...

Now we have `"type": "employee" ` but the http://jsonapi.org/ standard says it should be `"type": "employees" `

The underscores from the database should be automatically transformed to dashes. eg last_name -> last-name See some of the example JSON on the [JSON API home page](http://jsonapi.org/): "attributes": { "first-name":...

bug

You can create an alias like this ``` public function getAliasedProperties() { return [ 'dbkey' => 'jsonkey', } ``` the json attributed will show `jsonkey`. perfect. Only when you have...

bug

Is it possible to add to the documentation an example of how you overwrite default behaviour, eg with an example for getAction or postAction? Would be amazing.