可以给定一组数据用Validator 验证吗
public function store(PincardRequest $request){
这个是方法
}
下面这个是验证
<?php
namespace App\Http\Requests;
use App\Http\Requests\Request;
class PincardRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'yd'=>array('required','regex:/\p{Han}/u'),
];
}
public function messages(){
return [
'yd.required'=>'不能为空!',
];
}
}
我要怎么在store传yd过去给验证
谢邀,可以这么做,在控制器中增加下面两个方法,如果需要传数组验证,则使用下面的方法
那个。。。那个数组提交是什么意思???