Based on the documentations. Exists can have 4 parameters:
exists:table,id,where,0
The question is, What if I wanted it to be where is not. Lik
You can use something like this:
Validator::extend('not_exists', function($attribute, $value, $parameters) { return DB::table($parameters[0]) ->where($parameters[1], '=', $value) ->andWhere($parameters[2], '<>', $value) ->count()<1; });