diff --git a/laravel/input.php b/laravel/input.php index 1643a7a0..863732d7 100644 --- a/laravel/input.php +++ b/laravel/input.php @@ -55,7 +55,7 @@ public static function has($key) */ public static function get($key = null, $default = null) { - $value = Request::foundation()->request->get($key); + $value = array_get(Request::foundation()->request->all(), $key); if (is_null($value)) {