Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/larvatecn/laravel-captcha

Graphic verification code extension for Laravel. 适用于 Laravel 的验证码服务。
https://github.com/larvatecn/laravel-captcha

captcha laravel php

Last synced: about 1 month ago
JSON representation

Graphic verification code extension for Laravel. 适用于 Laravel 的验证码服务。

Awesome Lists containing this project

README

        

# laravel-captcha
适用于 Laravel 的验证码服务。


Latest Stable Version
Latest Unstable Version

## 环境需求

- PHP ^7.4 | ^8.0

## Installation

```bash
composer require larva/laravel-captcha -vv
```

## 使用

路由

```php

GET /captcha

```

该路由输出的是图片,自行在表单组织。

表单中验证
```php
$validatedData = $request->validate([
'captcha' => 'required|string|min:6|max:7',
]);
```