0
我需要在我的一個控制器中進行驗證 - 我無法爲這個特定問題使用請求類 - 所以我想弄清楚如何定義自定義驗證消息在控制器中。Larval 5.2:在控制器中定義自定義錯誤消息
我已經找遍了,找不到任何暗示它可能的東西。
可能嗎?我會怎麼做?
public function store(Request $request)
{
$this->validate($request, [
'title' => 'required|unique:posts|max:255',
'body' => 'required',
]);
// can I create custom error messages for each input down here?
// something like...
$this->validate($errors, [
'title' => 'Please enter a title',
'body' => 'Please enter some text',
]);
}
我不能使用請求類對於此問題,它在控制器來完成。 – timgavin