laravel 验证码captcha

进入网站https://packagist.org

搜索captcha

找到mews/captcha点击进来

 

composer require mews/captcha

修改config/app.php文件

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

发布命令

php artisan vendor:publish

laravel 验证码captcha_第1张图片

然后即可

你可能感兴趣的:(laravel)