“aturan khusus validasi laravel” Kode Jawaban

aturan khusus validasi laravel

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

Laravel Validasi Kustom

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

Jawaban yang mirip dengan “aturan khusus validasi laravel”

Pertanyaan yang mirip dengan “aturan khusus validasi laravel”

Lebih banyak jawaban terkait untuk “aturan khusus validasi laravel” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya