How to do that this function would look for a row in table not by given name John but by inputed 'name' ?
public function validation($request)
{
return $this->validate($request, [
'name' => 'required|max:255',
'last_name' => 'required|max:255',
'code' => ['required',Rule::exists('users')->where(function ($query) {
$query->where('name', '=', 'John');
}), ],
]);
}
Check your param and change 'John' to request->name