“Walidacja laravel reguły niestandardowej” Kod odpowiedzi

Walidacja laravel reguły niestandardowej

public function store()
{
    $this->validate(request(), [
        'song' => [function ($attribute, $value, $fail) {
            if ($value <= 10) {
                $fail(':attribute needs more cowbell!');
            }
        }]
    ]);
}
Tiago F2

Niestandardowa walidacja Laravel

namespace App\Rules;

use Illuminate\Contracts\Validation\Rule;

class GreaterThanTen implements Rule
{
    // Should return true or false depending on whether the attribute value is valid or not.
    public function passes($attribute, $value)
    {
        return $value > 10;
    }

    // This method should return the validation error message that should be used when validation fails
    public function message()
    {
        return 'The :attribute must be greater than 10.';
    }
}
Yawning Yak

Odpowiedzi podobne do “Walidacja laravel reguły niestandardowej”

Pytania podobne do “Walidacja laravel reguły niestandardowej”

Więcej pokrewnych odpowiedzi na “Walidacja laravel reguły niestandardowej” w PHP

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

Przeglądaj inne języki kodu