我有一個很大的表單,有很多選擇框。如何使用Laravel 4驗證設置來查看是否填充了任何字段或填充字段,以及是否填充字段返回頁面並顯示錯誤?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();
}