“Waliator i błąd niestandardowy Laravel 8” Kod odpowiedzi

Jak dodać błąd niestandardowy do błędu Validater w Laravel

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

Waliator i błąd niestandardowy Laravel 8

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

Odpowiedzi podobne do “Waliator i błąd niestandardowy Laravel 8”

Pytania podobne do “Waliator i błąd niestandardowy Laravel 8”

Więcej pokrewnych odpowiedzi na “Waliator i błąd niestandardowy Laravel 8” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu