diff --git a/src/Illuminate/Auth/Access/Gate.php b/src/Illuminate/Auth/Access/Gate.php index de057d6eafb1..0888c070ce27 100644 --- a/src/Illuminate/Auth/Access/Gate.php +++ b/src/Illuminate/Auth/Access/Gate.php @@ -221,7 +221,7 @@ public function authorize($ability, $arguments = []) return $result; } - return $result ? $this->allow() : $this->deny(); + return $result ? $this->allow() : $this->deny($arguments); } /**