PHP code example of rubensrocha / solvemedia-captcha

1. Go to this page and download the library: Download rubensrocha/solvemedia-captcha 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/ */

    

rubensrocha / solvemedia-captcha example snippets


Rubensrocha\SolveMediaCaptcha\SolveMediaCaptchaServiceProvider::class,

'SolveMediaCaptcha' => Rubensrocha\SolveMediaCaptcha\Facades\SolveMediaCaptcha::class,

{!! SolveMediaCaptcha::display() !!}

$validate = Validator::make(Input::all(), [
	'adcopy_response' => '

'custom' => [
    'adcopy_response' => [
        'y again later or contact site admin.',
    ],
],

@if ($errors->has('adcopy_response'))
    <span class="help-block">
        <strong>{{ $errors->first('adcopy_response') }}</strong>
    </span>
@endif
ssh
php artisan vendor:publish --provider="Rubensrocha\SolveMediaCaptcha\SolveMediaCaptchaServiceProvider"