1. Go to this page and download the library: Download laragear/recaptcha library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
laragear / recaptcha example snippets
use Illuminate\Support\Facades\Route;
Route::post('login', function () {
// ...
})->middleware('recaptcha:checkbox');
use App\Http\Controllers\ContactController;
use Laragear\ReCaptcha\Http\Middleware\Builders\ReCaptcha;
use Illuminate\Support\Facades\Route;
Route::post('contact', [ContactController::class, 'send'])
->middleware(ReCaptcha::invisible()->forGuests('web')->remember())
use App\Http\Controllers\Auth\LoginController;
use Laragear\ReCaptcha\Http\Middleware\Builders\ReCaptcha;
use Illuminate\Support\Facades\Route
Route::post('login', [LoginController::class, 'login'])
->middleware(ReCaptcha::invisible()->remember());
Route::post('message', [ChatController::class, 'login'])
->middleware(ReCaptcha::checkbox()->rememberForever());
use App\Http\Controllers\Auth\LoginController;
use Laragear\ReCaptcha\Http\Middleware\Builders\ReCaptcha;
use Illuminate\Support\Facades\Route
Route::post('login', [LoginController::class, 'login'])
->middleware(ReCaptcha::checkbox()->input('recaptcha_input'));
use App\Http\Controllers\CommentController;
use Laragear\ReCaptcha\Http\Middleware\Builders\ReCaptcha;
use Illuminate\Support\Facades\Route
Route::post('comment', [CommentController::class, 'create'])
->middleware(ReCaptcha::score());
use App\Models\Post;
use Illuminate\Http\Request;
public function store(Request $request, Post $post)
{
$request->validate([
'body' => '.
if ($request->isRobot()) {
$comment->markAsModerated();
}
$comment->save();
return view('post.comment.show', ['comment' => $comment]);
}
use Laragear\ReCaptcha\Facades\ReCaptcha;
$response = ReCaptcha::response();
if ($response->score > 0.2) {
return 'Try again!';
}
use App\Http\Controllers\CommentController;
use Laragear\ReCaptcha\Http\Middleware\Builders\ReCaptcha;
use Illuminate\Support\Facades\Route
Route::post('comment', [CommentController::class, 'store'])
->middleware(ReCaptcha::score()->threshold(0.7)->action('post-comment')->input('my_score_input');
use App\Http\Controllers\CommentController;
use App\Http\Controllers\MessageController;
use DarkGhostHunter\Captcha\ReCaptcha;
use Illuminate\Support\Facades\Route
// Don't challenge users authenticated on the default (web) guard.
Route::post('message/send', [MessageController::class, 'send'])
->middleware(ReCaptcha::invisible()->forGuests());
// Don't challenge users authenticated on the "admin" and "moderator" guards.
Route::post('comment/store', [CommentController::class, 'store'])
->middleware(ReCaptcha::score(0.7)->action('comment.store')->forGuests('admin', 'moderator'));
use Illuminate\Support\Facades\Route;
Route::get('/settings', function () {
// ...
})->middleware('recaptcha.confirm');
Route::post('/settings', function () {
// ...
})->middleware('recaptcha.confirm');
use Illuminate\Support\Facades\Route;
use Laragear\ReCaptcha\Http\Controllers\ConfirmationController;
Route::get('recaptcha', [ConfirmationController::class, 'show'])
->name('recaptcha.confirm');
Route::post('recaptcha', [ConfirmationController::class, 'confirm'])
use Illuminate\Support\Facades\Route;
Route::get('/settings', function () {
// ...
})->middleware('recaptcha.confirm:my-custom-route,web,admin');
use Laragear\ReCaptcha\Facades\ReCaptcha;
// Let the user login normally.
ReCaptcha::fakeHuman();
$this->post('login', [
'email' => '[email protected]',
'password' => '123456',
])->assertRedirect('user.welcome');
// ... but if it's a robot, force him to use 2FA.
ReCaptcha::fakeRobot();
$this->post('login', [
'email' => '[email protected]',
'password' => '123456',
])->assertViewIs('login.2fa');
use Laragear\ReCaptcha\Facades\ReCaptcha;
// A human comment should be public.
ReCaptcha::fakeScore(0.8);
$this->post('comment', [
'body' => 'This comment was made by a human',
])->assertSee('Your comment has been posted!');
// Moderate a post if there is no clear separation.
ReCaptcha::fakeScore(0.4);
$this->post('comment', [
'body' => 'Comment made by something.',
])->assertSee('Your comment will be reviewed before publishing.');
// A robot shouldn't be able to comment.
ReCaptcha::fakeScore(0.2);
$this->post('comment', [
'body' => 'Comment made by robot.',
])->assertSee('Robots are not welcomed here! Go away!');