forUser($this)->check($ability, $arguments); } /** * Determine if the entity does not have a given ability. * * @param string $ability * @param array|mixed $arguments * @return bool */ public function cant($ability, $arguments = []) { return ! $this->can($ability, $arguments); } /** * Determine if the entity does not have a given ability. * * @param string $ability * @param array|mixed $arguments * @return bool */ public function cannot($ability, $arguments = []) { return $this->cant($ability, $arguments); } }