コード例 #1
0
 /**
  * Generate captcha image html tag
  *
  * @param null $config
  * @return string 
  * @static 
  */
 public static function img($config = null)
 {
     //Method inherited from \Mews\Captcha\Captcha
     return \App\Captcha\Captcha::img($config);
 }
コード例 #2
0
 /**
  * get CAPTCHA
  *
  * @param \App\Captcha\Captcha $captcha
  * @param string $config
  * @return \Intervention\Image\ImageManager->response
  */
 public function getCaptcha(Captcha $captcha, $config = 'default')
 {
     return $captcha->create($config);
 }