Package Data | |
---|---|
Maintainer Username: | Latrell |
Maintainer Contact: | i@latrell.me (Latrell Chan) |
Package Create Date: | 2014-04-24 |
Package Last Update: | 2018-03-16 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:17:32 |
Package Statistics | |
---|---|
Total Downloads: | 7,562 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 8 |
Total Watchers: | 2 |
Total Forks: | 13 |
Total Open Issues: | 0 |
For Laravel 4, please use the 1.1 branch!
A simple Laravel 5 service provider for including the Captcha for Laravel 5.
This library is not maintained for 3rd party use.
composer require latrell/captcha dev-master
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' => [
// ...
'Latrell\Captcha\CaptchaServiceProvider',
]
Find the aliases
key in config/app.php
.
'aliases' => [
// ...
'Captcha' => 'Latrell\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/latrell-captcha.php
.
This config file is the primary way you interact with Captcha.
// [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;
});