yeah currently version, just can check current logged-in user, but if want to check other user access, is there any way to check. i don't mind even that doesn't standard,
You want to check the permission of any given user, not of the current user? You can't, Auth::has_access() works on the current logged-in user.
If you need that you'll need to extend the ACL driver, copy has_access() to something else, and in the copy replace Auth::get_user() by some other means of retrieving the user you want to check.