I have two user models one in Models/user.php the second in Models/omni/User.php.
How do i make this validator check if the user is exits in the omi User model
'email' => 'required|email|unique:users',
'name' => 'required|fullname|unique:users',
'address' => 'required',
'password' => 'required',
]);```
how do i define which user table it should validate this required|email|unique:users on becuase i have two users table in two databases