“Пользовательская проверка Laravel” Ответ

Валидатор Laravel составить пользовательское сообщение

$rules = [
        'name' => 'required',
        'email' => 'required|email',
        'message' => 'required|max:250',
    ];

    $customMessages = [
        'required' => 'The :attribute field is required.'
    ];

    $this->validate($request, $rules, $customMessages);
Clever Constrictor

Сообщение об ошибке проверки в Ларавеле


@if ($errors->any())
    <div class="alert alert-danger">
        <ul>
            @foreach ($errors->all() as $error)
                <li>{{ $error }}</li>
            @endforeach
        </ul>
    </div>
@endif
Ill Ibex

Как добавить пользовательскую ошибку в ошибку Validater в Laravel

if (request('event') == null) {
    $validator->errors()->add('event', 'Please select an event');
}
Romesh Fernando

Пользовательское сообщение Laravel Validation

public function store()
{
    request()->validate([
        'file' => 'required',
        'type' => 'required'
    ],
    [
        'file.required' => 'You have to choose the file!',
        'type.required' => 'You have to choose type of the file!'
    ]);
}
vintsol

Пользовательская проверка Laravel

$this->validate([ // 1st array is field rules
  'userid' =>'required|min:3|max:100',
  'username' =>'required|min:3',
  'password' =>'required|max:15|confirmed',
], [ // 2nd array is the rules custom message
  'required' => 'The :attribute field is mandatory.'
], [ // 3rd array is the fields custom name
  'userid' => 'User ID'
]);
hirohito

Пользовательская проверка Laravel

$rules = [
        'name' => 'required',
        'email' => 'required|email',
        'message' => 'required|max:250',
    ];

    $customMessages = [
        'required' => 'The :attribute field is required.'
    ];

    $this->validate($request, $rules, $customMessages);
ApetweBc

Ответы похожие на “Пользовательская проверка Laravel”

Вопросы похожие на “Пользовательская проверка Laravel”

Больше похожих ответов на “Пользовательская проверка Laravel” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования