Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JacquesvanWyk/3f9469a915a55ea66c7bbd5f2a045a0c to your computer and use it in GitHub Desktop.
Save JacquesvanWyk/3f9469a915a55ea66c7bbd5f2a045a0c to your computer and use it in GitHub Desktop.
Create a custom message on a validation field
$request->validate([
'name' => 'required',
],
[
'name.required' => 'Custom message for validation',
]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment