今天看见一个网站登录页面有个图片验证码,想想自己以前好像真没弄过这个玩意,正好现在有时间,准备用laravel来弄个图片验证码出来,不多BB,直接上代码 1.直接使用别人封装好的,composer下载一个 composer require gregwar/captcha 2.直接设置各种属性和输出图片 <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Gregwar\Captcha\CaptchaBuil…