Answers for "validate in laravel without knowing the input"

PHP
0

laravel validation

"foo" => "Your input was invalid!",

"accepted" => "The :attribute must be accepted.",

// The rest of the validation error messages...
Posted by: Guest on December-25-2020
-1

laravel validation

$rules = ['name' => 'unique:users,name'];

$input = ['name' => ''];

Validator::make($input, $rules)->passes(); // true
Posted by: Guest on December-25-2020

Code answers related to "validate in laravel without knowing the input"

Browse Popular Code Answers by Language