diff --git a/laravel/view.php b/laravel/view.php index 949ddf88..ac45a938 100644 --- a/laravel/view.php +++ b/laravel/view.php @@ -87,8 +87,6 @@ protected function path($view) { $view = str_replace('.', '/', $view); - // A view may have a regular extension or a blade extension. We will need to - // check for both extensions when determining the path to the view. foreach (array(EXT, BLADE_EXT) as $extension) { if (file_exists($path = $this->path.$view.$extension)) return $path;