laravel-jsonapi
laravel-jsonapi copied to clipboard
Make it a breeze to create a jsonapi.org compliant APIs with Laravel 5.
``` $ composer require echo-it/laravel-jsonapi Using version ^2.4 for echo-it/laravel-jsonapi ./composer.json has been updated > php artisan clear-compiled Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements...
Laravel best practice seems to be to use snake_case for column names which is how the json keys are in turn generated out of Laravel when I hit the endpoint...
Hi all, Not sure if this is incorrect usage or a bug, but I'm getting errors when returning error response from my customer handlers. Example: ``` public function handleGet(ApiRequest $request)...
Hi, is there any way we can add some custom endpoints to a specific handler? I'm talking about `POST /posts/` for creating elements `POST /posts//duplicate` for duplicating a specific element...
I just wanted to double check how a typical POST/PUT request should look like for this lib to work. It seems you don't expect the attributes to be placed within...
I have been considering how to evolve this project for a while now. I find that some of the conventions could be made better and a lot of the classes...