Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RakibSiddiquee/9d1435d2ddb34ee387fa48850470fc5d to your computer and use it in GitHub Desktop.
Save RakibSiddiquee/9d1435d2ddb34ee387fa48850470fc5d to your computer and use it in GitHub Desktop.
Laravel custom validation error message
$this->validate($request, [
'heading' => 'required',
'category' => 'required',
'details' => 'required',
],[
'heading.required' => 'লেখার শিরোনাম প্রদান করুন!',
'category.required' => 'একটি ক্যাটাগরি নির্বাচন করুন!',
'details.required' => 'বিস্তারিত লেখা প্রদান করুন!',
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment