KTV/app/Http/Requests/Traits/FailedValidationJsonResponse.php
allen.yan ae5ed4aa1f Swagger 都改到ApiResponse 輸出
Swagger Room加入TcpSocketClient
Swagger room 加入 設備註冊,設備開關
Swagger room 有異動需要寫記錄
20250519
2025-05-19 16:08:35 +08:00

20 lines
547 B
PHP

<?php
namespace App\Http\Requests\Traits;
use Illuminate\Contracts\Validation\Validator;
use Illuminate\Http\Exceptions\HttpResponseException;
use Illuminate\Http\Response;
trait FailedValidationJsonResponse
{
protected function failedValidation(Validator $validator)
{
throw new HttpResponseException(response()->json([
'message' => 'Validation failed.',
'errors' => $validator->errors(),
'code' => 'ERROR',
'token' => ''
], Response::HTTP_UNPROCESSABLE_ENTITY));
}
}