diff --git a/laravel/view.php b/laravel/view.php index b4304889..9a375073 100644 --- a/laravel/view.php +++ b/laravel/view.php @@ -118,9 +118,9 @@ public function __construct($view, $data = array()) */ public static function exists($view, $return_path = false) { - if(starts_with($view, 'name: ')) + if (starts_with($view, 'name: ') and array_key_exists($name = substr($view, 6), static::$names)) { - $view = static::$names[substr($view, 6)]; + $view = static::$names[$name]; } list($bundle, $view) = Bundle::parse($view);