grohiro / laravel-camelcase-json by grohiro

Convert response JSON key to camelCase
63,206
26
4
Package Data
Maintainer Username: grohiro
Package Create Date: 2017-04-20
Package Last Update: 2021-01-15
Language: PHP
License: MIT
Last Refreshed: 2024-04-30 15:08:00
Package Statistics
Total Downloads: 63,206
Monthly Downloads: 1,434
Daily Downloads: 61
Total Stars: 26
Total Watchers: 4
Total Forks: 4
Total Open Issues: 5

laravel-camelcase-json

Convert response JSON key to camelCase.

Usage

In controller class

return response()->json($model);
// => ['userName' => 'foo', 'userKey' => 'bar', ...]

Requirements

  • Laravel 5+

Install

$ composer require 'grohiro/laravel-camelcase-json' '~1.0'

Add the service provider.

config/app.php

'provider' => [
	// default providers
	// ...
	
	Grohiro\LaravelCamelCaseJson\CamelCaseJsonResponseServiceProvider::class,
],