PHP code example of thgiang / laravel-response-json-snake-case
1. Go to this page and download the library: Download thgiang/laravel-response-json-snake-case library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
thgiang / laravel-response-json-snake-case example snippets
return response()->json($model);
// => ['user_name' => 'foo', 'user_key' => 'bar', ...]
'provider' => [
// default providers
// ...
THGiang\LaravelSnakeCaseJson\SnakeCaseJsonResponseServiceProvider::class,
],