我是否可以在laravel 5中使用表单验证规则,其中字段必须为min:6或0?
此致,Andreas
答案 0 :(得分:2)
我不知道为什么字段应该至少为零,但我想你的意思是字段应该是可选的(不是必需的)。这里有一个您可以使用的Sample Request类:
<?php namespace CRM\Http\Requests;
use CRM\Http\Requests\Request;
class PostRequest 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 [ 'title'=> 'sometimes|required|min:6' ];
}
}
我希望有所帮助。