标签:conf strong span laravel alias 验证码 json cad bsp
验证码
* 安装扩展包:composer require mews/captcha
如果需要其他版本,可以在composer.json中添加版本,然后更新
{
"require":{
"mews/captcha":"^2.3.0"
}
}
使用composer update 更新
* 修改配置config/app.php
‘providers‘ => [
Mews\Captcha\CaptchaServiceProvider::class,
],
‘aliases‘ => [
‘Captcha‘ => Mews\Captcha\Facades\Captcha::class,
],
如果想用自己配置文件可以
php artisan vendor:publish 生成自己的config/captcha.php配置文件
* 应用:使用captcha_img()或者captcha_src()根据扩展中的函数进行使用;
* 验证:validator([‘captcha‘=>"required|captcha"]);
标签:conf strong span laravel alias 验证码 json cad bsp
原文地址:https://www.cnblogs.com/wangzihao147/p/12874729.html