PHP code example of derekcodes / turnstile-laravel

1. Go to this page and download the library: Download derekcodes/turnstile-laravel 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/ */

    

derekcodes / turnstile-laravel example snippets


use DerekCodes\TurnstileLaravel\TurnstileLaravel;

$turnstile = new TurnstileLaravel;
$response = $turnstile->validate($request->get('cf-turnstile-response'));

if (get_data($response, 'status', 0) == 1) {
  // TODO: add success code here
}
bash
php artisan vendor:publish --tag=turnstile-config