dev
All checks were successful
Deploy to Production / deploy (push) Successful in 24s

This commit is contained in:
珂珂 2024-12-06 21:17:37 +08:00
parent cd10b62e27
commit 80ffd8991e

View File

@ -23,8 +23,10 @@ public function testdrive(Request $request)
$requestId = Str::uuid();
$request->merge(['request_id' => $requestId]);
$model = (new TestdriveCreateAction())->execute($request);
// TestdrivePushJob::dispatch($model);
$exists = Testdrive::query()->where('mobile', $request->input('mobile'))->exists();
throw_if($exists, ValidationException::withMessages(['mobile' => '手机号已存在']));
(new TestdriveCreateAction())->execute($request);
return response()->json(['code' => 0, 'message' => '提交成功', 'request_id' => $requestId]);
}