diff --git a/src/Illuminate/Support/Arr.php b/src/Illuminate/Support/Arr.php index 13aa89180675..0772b8f9dc58 100755 --- a/src/Illuminate/Support/Arr.php +++ b/src/Illuminate/Support/Arr.php @@ -282,7 +282,7 @@ public static function get($array, $key, $default = null) } foreach (explode('.', $key) as $segment) { - if (static::accessible($array) && static::exists($array, $segment)) { + if (static::exists($array, $segment)) { $array = $array[$segment]; } else { return value($default);