Created
June 2, 2016 14:46
-
-
Save purwandi/b7a56be74f840f6f87e77058de9b246e to your computer and use it in GitHub Desktop.
Custom error format response Lumen Framework
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use Laravel\Lumen\Routing\Controller as BaseController; | |
class Controller extends BaseController | |
{ | |
public function __construct() | |
{ | |
$this->customErrorFormat(); | |
} | |
/** | |
* Custom error response format | |
* | |
* @return Illuminate\Http\Response | |
*/ | |
private function customErrorFormat() | |
{ | |
static::$errorFormatter = function ($validator) { | |
$arr = []; | |
foreach ($validator->errors()->toArray() as $key => $value) { | |
$arr[$key] = $value[0]; | |
} | |
return [ | |
'errors' => $arr, | |
'meta' => [ | |
'code' => 422, | |
'message' => 'VALIDATION_FAILED', | |
], | |
]; | |
}; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍 Thanks for this. Always nice when copy and pasting someone else's code solves your problem.