Validator::make($data, [ 'email' => [ 'required', Rule::exists('staff')->where(function ($query) { return $query->where('account_id', 1); }), ], ]);