Skip to content

Instantly share code, notes, and snippets.

@ashour
Created February 13, 2020 10:46
Show Gist options
  • Save ashour/f73a4479a8090c54165a641b41e147a4 to your computer and use it in GitHub Desktop.
Save ashour/f73a4479a8090c54165a641b41e147a4 to your computer and use it in GitHub Desktop.
<?php
$validator = Validator::make($rules, $_POST);
if ($validator->isAllValid()) {
// all is well, proceed
} else {
// oops
$errors = $validator->errors();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment