15 lines
310 B
Plaintext
15 lines
310 B
Plaintext
/**
|
|
* Get an error response
|
|
*
|
|
* @param mix $message
|
|
*
|
|
* @return Illuminate\Http\Response
|
|
*/
|
|
protected function errorResponse($message)
|
|
{
|
|
return response()->json([
|
|
'errors' => (array) $message,
|
|
'success' => false,
|
|
], 422);
|
|
}
|