jerry
Results
2
comments of
jerry
try this: ``` Route::get('captcha', function () { $res = app('captcha')->create('default', true); return $res; }); Route::post('check_captcha', function (Request $req) { $captcha = $req->input('captcha'); $key = $req->input('key'); $res = captcha_api_check($captcha, $key); dump($res);...
Duplicate of #115