Skip to content

Instantly share code, notes, and snippets.

@ederrafo
Created August 5, 2019 19:52
Show Gist options
  • Save ederrafo/f6debf121eea94cf14923fc9ad710574 to your computer and use it in GitHub Desktop.
Save ederrafo/f6debf121eea94cf14923fc9ad710574 to your computer and use it in GitHub Desktop.

Laravel 5 use Validator;

$validator = Validator::make($request->all(), [ 'from' => 'required', 'to' => 'required', 'function' => 'required', 'name' => 'required', ]);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment