Answers for "custom validator in laravel"

PHP
8

validator laravel

public function store(Request $request)
{
    $validator = Validator::make($request->all(), [
        'title' => 'bail|required|max:255',
        'body' => 'required',
    ]);

    // Check validation failure
    if ($validator->fails()) {
       // [...]
      
      foreach($validator->messages()->getMessages() as $field_name => $messages) {

                // Go through each message for this field.
                foreach($messages AS $message) {
                    echo '***********'.$message.'***********<br>';
                }
            }
    }

    // Check validation success
    if ($validator->passes()) {
       // [...]
    }

    // Retrieve errors message bag
    $errors = $validator->errors();
}
Posted by: Guest on June-29-2021
7

laravel validation example

//import		
		use Illuminate\Support\Facades\Validator;
	
		// single var check
        $validator = Validator::make(['data' => $value],
            ['data' => 'string|min:1|max:10']
        );
        if ($validator->fails()) {
            // your code
        }

        // array check
        $validator = Validator::make(['data' => $array],
            ['email' => 'string|min:1|max:10'],
            ['username' => 'string|min:1|max:10'],
            ['password' => 'string|min:1|max:10'],
            ['...' => '...']
        );

        if ($validator->fails()) {
            // your code
        }
Posted by: Guest on April-17-2020
0

what is validator in laravel

$validator = Validator::make(
    [
        'name' => 'Dayle',
        'password' => 'lamepassword',
        'email' => '[email protected]'
    ],
    [
        'name' => 'required',
        'password' => 'required|min:8',
        'email' => 'required|email|unique:users'
    ]
);


if ($validator->fails())
{
    // The given data did not pass validation
}
Posted by: Guest on June-12-2021
0

laravel custom validation

php artisan make:rule RuleName
Posted by: Guest on February-06-2021

Code answers related to "custom validator in laravel"

Browse Popular Code Answers by Language