“Utwórz niestandardową regułę w Laravel” 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

Utwórz niestandardową regułę w Laravel

<?php

namespace App\Rules;

use Illuminate\Contracts\Validation\Rule;

class Uppercase implements Rule
{
    /**
     * Determine if the validation rule passes.
     *
     * @param  string  $attribute
     * @param  mixed  $value
     * @return bool
     */
    public function passes($attribute, $value)
    {
        return strtoupper($value) === $value;
    }

    /**
     * Get the validation error message.
     *
     * @return string
     */
    public function message()
    {
        return 'The :attribute must be uppercase.';
    }
}
Upset Unicorn

Odpowiedzi podobne do “Utwórz niestandardową regułę w Laravel”

Pytania podobne do “Utwórz niestandardową regułę w Laravel”

Więcej pokrewnych odpowiedzi na “Utwórz niestandardową regułę w Laravel” w PHP

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

Przeglądaj inne języki kodu