Laravel Validation Check If Value is Not Equal to a Another Field
In this post, we will learn how to check two value must not be same validation in laravel. we can check using laravel different validation rule. you can use different validation rule for field value should not same in form.
You can use that validation with form fields. i will give you controller method with form validation in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 application.
This is very small things but it might be need some time to use in laravel application. you can use different validation like as bellow:
Syntax:
different:form_field_name
Example:
different:parent_id
Full Example:
public function mergePost(Request $request)
{
$request->validate([
'primaty_id' => 'required',
'secondary_id' => 'required|different:primaty_id'
]);
dd('You can processed')...
}
I hope it can help you...