我有一个很大的表格,里面有很多选择框。如何使用 Laravel 4 验证设置来查看是否有任何字段或已填写以及是否未填写任何字段返回页面并显示错误?
我知道如何设置我只是在文档中看不到任何可以解决此问题的内容。
$input = [
//my get inputs will be going here
];
$rules = array(
//not sure if any rules for not filled are here?
);
$message = array(
//do I need a custom validator?
);
$validation = Validator::make($input, $rules, $message);
if($validation->fails()){
return Redirect::to('login')->withErrors($validation)->withInput();
}