У меня есть HTML-форма.Вот фрагмент:
<div class="form-group">
<label for="answer_text_1">Текст ответа 1</label>
<textarea class="form-control" id="answer_text_1" rows="3"
name="answer_text[0]"></textarea>
</div>
<div class="form-group">
<label for="answer_text_2">Текст ответа 2</label>
<textarea class="form-control" id="answer_text_2" rows="3"
name="answer_text[1]"></textarea>
</div>
<div class="form-group">
<label for="answer_text_3">Текст ответа 3</label>
<textarea class="form-control" id="answer_text_3" rows="3"
name="answer_text[2]"></textarea>
</div>
Как видите, я пытаюсь дать массив в answer_text
.Затем я пытаюсь проверить это с помощью Laravel Request и установить свои собственные сообщения об ошибках.Вот код запроса
class CreateQuestionRequest extends FormRequest
{
/**
* 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 [
'question' => 'required|string',
'answer_text.0' => 'required|string',
'answer_text.1' => 'required|string',
'answer_text.2' => 'required|string',
'answer_text.*' => 'distinct',
'answer' => 'required',
'cost' => 'required|integer',
'rating' => 'required|integer',
'duration' => 'required|integer',
];
}
public function messages()
{
return [
'question.required' => 'Текст вопроса не установлен.',
'answer_text.distinct' => 'У вас есть одинаковые варианты ответа.',
'answer_text.0' => 'Не указан первый вариант ответа.',
'answer_text.1' => 'Не указан второй вариант ответа.',
'answer_text.2' => 'Не указан третий вариант ответа.',
'cost.required' => 'Не указана цена вопроса.',
'rating.required' => 'Не указана сложность вопроса.',
'duration.required' => 'Не указано количество времени, данное пользователю на ответ',
'cost.integer' => 'Цена вопроса должна быть числом',
'rating.integer' => 'Сложность вопроса должна быть числом',
'duration.integer' => 'Время на ответ должно быть задано числом',
];
}
}
Но если я не заполню поля answer_text
, я вижу следующий:
Это ошибки Laravel по умолчанию.Но я хотел бы видеть мои сообщения от
public function messages()
{
return [
// ...
'answer_text.0' => 'Не указан первый вариант ответа.',
'answer_text.1' => 'Не указан второй вариант ответа.',
'answer_text.2' => 'Не указан третий вариант ответа.',
// ...
];
}