Skip to content

chenhakim/captcha

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Captcha for Laravel 5|6|7|8

A simple Laravel 5|6|7|8 service provider for including the Captcha for Laravel 5.

This library is not maintained for 3rd party use.

Preview

Captchas examples

Installation

composer require chenhakim/captcha dev-master

Usage

To use the Captcha Service Provider, you must register the provider when bootstrapping your Laravel application. There are essentially two ways to do this (only for Laravel 5.4 or below).

Find the providers key in config/app.php and register the Captcha Service Provider.

    'providers' => [
        // ...
        'Captcha\Captcha\CaptchaServiceProvider',
    ]

Find the aliases key in config/app.php.

    'aliases' => [
        // ...
        'Captcha' => 'Captcha\Facades\Captcha',
    ]

Custom error messages. Add key captcha to resources/lang/[local]/validation.php

return [
	// ...
	'captcha' => '图片验证码不正确。',
];

Then publish the config file with php artisan vendor:publish. This will add the file config/captcha.php. This config file is the primary way you interact with Captcha.

Example Usage

    // [your site path]/app/Http/routes.php

    Route::any('/captcha-test', function()
    {

        if (Request::getMethod() == 'POST')
        {
            $rules =  ['captcha' => 'required|captcha'];
            $validator = Validator::make(Input::all(), $rules);
            if ($validator->fails())
            {
                echo '<p style="color: #ff0000;">Incorrect!</p>';
            }
            else
            {
                echo '<p style="color: #00ff30;">Matched :)</p>';
            }
        }

        $content = Form::open(array(URL::to(Request::segment(1))));
        $content .= '<p>' . HTML::image(Captcha::url()) . '</p>';
        $content .= '<p>' . Form::text('captcha') . '</p>';
        $content .= '<p>' . Form::submit('Check') . '</p>';
        $content .= '<p>' . Form::close() . '</p>';
        return $content;

    });

Links

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages