Symfony Exception

InvalidArgumentException ViewException

HTTP 500 Internal Server Error

View [partials.teasers.base] not found. (View: /home/boschpar/public_html/wp-content/themes/boschparade/resources/views/index.blade.php)

Exceptions 2

Illuminate\View\ ViewException

  1.                     return $viewPath;
  2.                 }
  3.             }
  4.         }
  5.         throw new InvalidArgumentException("View [{$name}] not found.");
  6.     }
  7.     /**
  8.      * Get an array of possible view files.
  9.      *
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         }
  2.         // Once we have the path to the compiled file, we will evaluate the paths with
  3.         // typical PHP just like any other templates. We also keep a stack of views
  4.         // which have been rendered for right exception messages to be generated.
  5.         $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         array_pop($this->lastCompiled);
  7.         return $results;
  8.     }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each sections get flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php wp_body_open(); ?>
  2. <?php do_action('get_header'); ?>
  3. <div id="app">
  4.   <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5. </div>
  6. <?php do_action('get_footer'); ?>
  7. <?php wp_footer(); ?>
include('/home/boschpar/public_html/wp-content/themes/boschparade/index.php') in /home/boschpar/public_html/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/boschpar/public_html/wp-includes/template-loader.php') in /home/boschpar/public_html/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/home/boschpar/public_html/wp-blog-header.php') in /home/boschpar/public_html/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

InvalidArgumentException

View [partials.teasers.base] not found.

  1.                     return $viewPath;
  2.                 }
  3.             }
  4.         }
  5.         throw new InvalidArgumentException("View [{$name}] not found.");
  6.     }
  7.     /**
  8.      * Get an array of possible view files.
  9.      *
  1.         if ($this->hasHintInformation($name trim($name))) {
  2.             return $this->views[$name] = $this->findNamespacedView($name);
  3.         }
  4.         return $this->views[$name] = $this->findInPaths($name$this->paths);
  5.     }
  6.     /**
  7.      * Get the path to a template with a named path.
  8.      *
  1.      * @return \Illuminate\Contracts\View\View
  2.      */
  3.     public function make($view$data = [], $mergeData = [])
  4.     {
  5.         $path $this->finder->find(
  6.             $view $this->normalizeName($view)
  7.         );
  8.         // Next, we will create the view instance and call the view creator for the view
  9.         // which can set any data, etc. Then we will return the view instance back to
  10.         // the caller for rendering or performing other view manipulations on this.
  1.         <?php while(have_posts()): ?>
  2.           <?php
  3.             global $post;
  4.             the_post();
  5.           ?>
  6.           <?php echo $__env->make('partials.teasers.base' \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  7.         <?php endwhile; ?>
  8.       </div>
  9.       <?php echo $__env->make('partials.components.pager', ['type'=>'post'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         }
  2.         // Once we have the path to the compiled file, we will evaluate the paths with
  3.         // typical PHP just like any other templates. We also keep a stack of views
  4.         // which have been rendered for right exception messages to be generated.
  5.         $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         array_pop($this->lastCompiled);
  7.         return $results;
  8.     }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each sections get flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php wp_body_open(); ?>
  2. <?php do_action('get_header'); ?>
  3. <div id="app">
  4.   <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5. </div>
  6. <?php do_action('get_footer'); ?>
  7. <?php wp_footer(); ?>
include('/home/boschpar/public_html/wp-content/themes/boschparade/index.php') in /home/boschpar/public_html/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/boschpar/public_html/wp-includes/template-loader.php') in /home/boschpar/public_html/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/home/boschpar/public_html/wp-blog-header.php') in /home/boschpar/public_html/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

Stack Traces 2

[2/2] ViewException
Illuminate\View\ViewException:
View [partials.teasers.base] not found. (View: /home/boschpar/public_html/wp-content/themes/boschparade/resources/views/index.blade.php)

  at /home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/FileViewFinder.php:137
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/home/boschpar/public_html/wp-content/themes/boschparade/index.php:31)
  at include('/home/boschpar/public_html/wp-content/themes/boschparade/index.php')
     (/home/boschpar/public_html/wp-includes/template-loader.php:106)
  at require_once('/home/boschpar/public_html/wp-includes/template-loader.php')
     (/home/boschpar/public_html/wp-blog-header.php:19)
  at require('/home/boschpar/public_html/wp-blog-header.php')
     (/home/boschpar/public_html/index.php:17)                
[1/2] InvalidArgumentException
InvalidArgumentException:
View [partials.teasers.base] not found.

  at /home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/FileViewFinder.php:137
  at Illuminate\View\FileViewFinder->findInPaths()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/FileViewFinder.php:79)
  at Illuminate\View\FileViewFinder->find()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/Factory.php:138)
  at Illuminate\View\Factory->make()
     (/home/boschpar/public_html/wp-content/cache/acorn/framework/views/2f0294e2303f47d3db44875f6180e8acd0b15247.php:32)
  at require('/home/boschpar/public_html/wp-content/cache/acorn/framework/views/2f0294e2303f47d3db44875f6180e8acd0b15247.php')
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/boschpar/public_html/wp-content/themes/boschparade/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/home/boschpar/public_html/wp-content/themes/boschparade/index.php:31)
  at include('/home/boschpar/public_html/wp-content/themes/boschparade/index.php')
     (/home/boschpar/public_html/wp-includes/template-loader.php:106)
  at require_once('/home/boschpar/public_html/wp-includes/template-loader.php')
     (/home/boschpar/public_html/wp-blog-header.php:19)
  at require('/home/boschpar/public_html/wp-blog-header.php')
     (/home/boschpar/public_html/index.php:17)