laravel-learn-bbs/app/Http/Requests/Api/VerificationCodeRequest.php
2018-06-10 22:37:37 +08:00

30 lines
540 B
PHP

<?php
namespace App\Http\Requests\Api;
class VerificationCodeRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'captcha_key' => 'required|string',
'captcha_code' => 'required|string',
];
}
public function attributes()
{
return [
'captcha_key' => '图片验证码 key',
'captcha_code' => '图片验证码',
];
}
}