Symfony Exception

ErrorException ViewException ViewException

HTTP 500 Internal Server Error

Undefined array key "path" (View: /var/www/html/wp-content/themes/swamp/resources/views/woocommerce/content-product.blade.php) (View: /var/www/html/wp-content/themes/swamp/resources/views/woocommerce/content-product.blade.php)

Exceptions 3

Illuminate\View\ ViewException

  1.                     $local_url  = isset( $parsed_url['scheme'] ) ? $parsed_url['scheme'] . '://' '';
  2.                     $local_url .= isset( $parsed_url['host'] ) ? $parsed_url['host'] : '';
  3.                     $local_url .= isset( $parsed_url['path'] ) ? $parsed_url['path'] : '';
  4.                     $id_v2         pathinfopreg_replace'/[\/\:]/''_'$local_url ), PATHINFO_FILENAME );
  5.                     $local_file_v2 wp_normalize_pathWAVEPLAYER_PEAK_FOLDER "$id_v2." pathinfo$parsed_url['path'], PATHINFO_EXTENSION ) );
  6.                     $local_file_v3 wp_normalize_pathWAVEPLAYER_PEAK_FOLDER "$type/$id_v3." pathinfo$parsed_url['path'], PATHINFO_EXTENSION ) );
  7.                     if ( ! trim$id_v2 ) && ! trim$id_v3 ) ) {
  8.                         continue;
  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. <?= \Roots\view('woocommerce.archive-product'$data ?? get_defined_vars())->render(); ?>
  2. <?php /**PATH /var/www/html/wp-content/themes/swamp/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
include('/var/www/html/wp-content/cache/acorn/framework/views/dd2e338b6dbe9c2a98a8c0a21d335de4-loader.php') in /var/www/html/wp-content/plugins/woocommerce/includes/wc-core-functions.php (line 345)
  1.         extract$args ); // @codingStandardsIgnoreLine
  2.     }
  3.     do_action'woocommerce_before_template_part'$action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
  4.     include $action_args['located'];
  5.     do_action'woocommerce_after_template_part'$action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
  6. }
  7. /**
  1. if ( ! defined'ABSPATH' ) ) {
  2.     exit; // Exit if accessed directly.
  3. }
  4. wc_get_template'archive-product.php' );
  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.      * @param  array  $data
  2.      * @return string
  3.      */
  4.     public function get($path, array $data = [])
  5.     {
  6.         return $this->evaluatePath($path$data);
  7.     }
  8.     /**
  9.      * Get the evaluated contents of the view at the given path.
  10.      *
  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.   <body <?php body_class('woocommerce-block-theme-has-button-styles'); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9.   </body>
include('/var/www/html/wp-content/themes/swamp/index.php') in /var/www/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('/var/www/html/wp-includes/template-loader.php') in /var/www/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('/var/www/html/wp-blog-header.php') in /var/www/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';

Illuminate\View\ ViewException

Undefined array key "path" (View: /var/www/html/wp-content/themes/swamp/resources/views/woocommerce/content-product.blade.php)

  1.                     $local_url  = isset( $parsed_url['scheme'] ) ? $parsed_url['scheme'] . '://' '';
  2.                     $local_url .= isset( $parsed_url['host'] ) ? $parsed_url['host'] : '';
  3.                     $local_url .= isset( $parsed_url['path'] ) ? $parsed_url['path'] : '';
  4.                     $id_v2         pathinfopreg_replace'/[\/\:]/''_'$local_url ), PATHINFO_FILENAME );
  5.                     $local_file_v2 wp_normalize_pathWAVEPLAYER_PEAK_FOLDER "$id_v2." pathinfo$parsed_url['path'], PATHINFO_EXTENSION ) );
  6.                     $local_file_v3 wp_normalize_pathWAVEPLAYER_PEAK_FOLDER "$type/$id_v3." pathinfo$parsed_url['path'], PATHINFO_EXTENSION ) );
  7.                     if ( ! trim$id_v2 ) && ! trim$id_v3 ) ) {
  8.                         continue;
  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. <?= \Roots\view('woocommerce.content-product'$data ?? get_defined_vars())->render(); ?>
  2. <?php /**PATH /var/www/html/wp-content/themes/swamp/resources/views/woocommerce/content-product.blade.php ENDPATH**/ ?>
require('/var/www/html/wp-content/cache/acorn/framework/views/f772eb19544980d1eb3d58fdda880852-loader.php') in /var/www/html/wp-includes/template.php (line 812)
  1.     do_action'wp_before_load_template'$_template_file$load_once$args );
  2.     if ( $load_once ) {
  3.         require_once $_template_file;
  4.     } else {
  5.         require $_template_file;
  6.     }
  7.     /**
  8.      * Fires after a template file is loaded.
  9.      *
  1.     // Allow 3rd party plugins to filter template file from their plugin.
  2.     $template apply_filters'wc_get_template_part'$template$slug$name );
  3.     if ( $template ) {
  4.         load_template$templatefalse );
  5.     }
  6. }
  7. /**
  8.  * Get other templates (e.g. product attributes) passing attributes and including the file.
  1.         <?php if(wc_get_loop_prop('total')): ?>
  2.             <?php while(have_posts()): ?>
  3.                 <?php
  4.                     the_post();
  5.                     do_action('woocommerce_shop_loop');
  6.                     wc_get_template_part('content''product');
  7.                 ?>
  8.             <?php endwhile; ?>
  9.         <?php endif; ?>
  10.         <?php
  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. <?= \Roots\view('woocommerce.archive-product'$data ?? get_defined_vars())->render(); ?>
  2. <?php /**PATH /var/www/html/wp-content/themes/swamp/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
include('/var/www/html/wp-content/cache/acorn/framework/views/dd2e338b6dbe9c2a98a8c0a21d335de4-loader.php') in /var/www/html/wp-content/plugins/woocommerce/includes/wc-core-functions.php (line 345)
  1.         extract$args ); // @codingStandardsIgnoreLine
  2.     }
  3.     do_action'woocommerce_before_template_part'$action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
  4.     include $action_args['located'];
  5.     do_action'woocommerce_after_template_part'$action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
  6. }
  7. /**
  1. if ( ! defined'ABSPATH' ) ) {
  2.     exit; // Exit if accessed directly.
  3. }
  4. wc_get_template'archive-product.php' );
  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.      * @param  array  $data
  2.      * @return string
  3.      */
  4.     public function get($path, array $data = [])
  5.     {
  6.         return $this->evaluatePath($path$data);
  7.     }
  8.     /**
  9.      * Get the evaluated contents of the view at the given path.
  10.      *
  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.   <body <?php body_class('woocommerce-block-theme-has-button-styles'); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9.   </body>
include('/var/www/html/wp-content/themes/swamp/index.php') in /var/www/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('/var/www/html/wp-includes/template-loader.php') in /var/www/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('/var/www/html/wp-blog-header.php') in /var/www/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';

ErrorException

Undefined array key "path"

  1.                     $local_url  = isset( $parsed_url['scheme'] ) ? $parsed_url['scheme'] . '://' '';
  2.                     $local_url .= isset( $parsed_url['host'] ) ? $parsed_url['host'] : '';
  3.                     $local_url .= isset( $parsed_url['path'] ) ? $parsed_url['path'] : '';
  4.                     $id_v2         pathinfopreg_replace'/[\/\:]/''_'$local_url ), PATHINFO_FILENAME );
  5.                     $local_file_v2 wp_normalize_pathWAVEPLAYER_PEAK_FOLDER "$id_v2." pathinfo$parsed_url['path'], PATHINFO_EXTENSION ) );
  6.                     $local_file_v3 wp_normalize_pathWAVEPLAYER_PEAK_FOLDER "$type/$id_v3." pathinfo$parsed_url['path'], PATHINFO_EXTENSION ) );
  7.                     if ( ! trim$id_v2 ) && ! trim$id_v3 ) ) {
  8.                         continue;
  9.                     }
  1.      * @throws \ErrorException
  2.      */
  3.     public function handleError($level$message$file ''$line 0$context = [])
  4.     {
  5.         try {
  6.             parent::handleError($level$message$file$line$context);
  7.         } catch (Throwable $e) {
  8.             if (! apply_filters('acorn/throw_error_exception'true$e)) {
  9.                 return false;
  10.             }
HandleExceptions->handleError() in /var/www/html/wp-content/plugins/waveplayer/includes/class-ajax.php (line 792)
  1.                     $local_url  = isset( $parsed_url['scheme'] ) ? $parsed_url['scheme'] . '://' '';
  2.                     $local_url .= isset( $parsed_url['host'] ) ? $parsed_url['host'] : '';
  3.                     $local_url .= isset( $parsed_url['path'] ) ? $parsed_url['path'] : '';
  4.                     $id_v2         pathinfopreg_replace'/[\/\:]/''_'$local_url ), PATHINFO_FILENAME );
  5.                     $local_file_v2 wp_normalize_pathWAVEPLAYER_PEAK_FOLDER "$id_v2." pathinfo$parsed_url['path'], PATHINFO_EXTENSION ) );
  6.                     $local_file_v3 wp_normalize_pathWAVEPLAYER_PEAK_FOLDER "$type/$id_v3." pathinfo$parsed_url['path'], PATHINFO_EXTENSION ) );
  7.                     if ( ! trim$id_v2 ) && ! trim$id_v3 ) ) {
  8.                         continue;
  9.                     }
  1.             if ( isset( $args['ids'] ) ) {
  2.                 $tracks array_merge$tracksAJAX::create_playlist$args['ids'], $post_id ) );
  3.             }
  4.             if ( isset( $args['url'] ) && $args['url'] ) {
  5.                 $tracks array_merge$tracksAJAX::create_external_playlist$args['url'], $post_id ) );
  6.             }
  7.             if ( isset( $args['tracks'] ) ) {
  8.                 $track_param json_decodebase64_decode$args['tracks'] ), true ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_decode
  9.                 if ( is_array$track_param ) ) {
  1.                 $stack .= self::shortcode_content$single_args );
  2.             }
  3.             return $stack;
  4.         } else {
  5.             return self::shortcode_content$args );
  6.         }
  7.     }
  8.     /**
  9.      *
Renderer::waveplayer_shortcode() in /var/www/html/wp-includes/shortcodes.php (line 433)
  1.         return $return;
  2.     }
  3.     $content = isset( $m[5] ) ? $m[5] : null;
  4.     $output $m[1] . call_user_func$shortcode_tags$tag ], $attr$content$tag ) . $m[6];
  5.     /**
  6.      * Filters the output created by a shortcode callback.
  7.      *
  8.      * @since 4.7.0
do_shortcode_tag()
preg_replace_callback() in /var/www/html/wp-includes/shortcodes.php (line 273)
  1.     }
  2.     $content do_shortcodes_in_html_tags$content$ignore_html$tagnames );
  3.     $pattern get_shortcode_regex$tagnames );
  4.     $content preg_replace_callback"/$pattern/"'do_shortcode_tag'$content );
  5.     // Always restore square braces so we don't break things like <!--[if IE ]>.
  6.     $content unescape_invalid_shortcodes$content );
  7.     // Only remove the filter if it was added in this scope.
  1.                         },
  2.                         array_keys$args ),
  3.                         $args
  4.                     )
  5.                 );
  6.                 return do_shortcode"[waveplayer $params]" );
  7.             }
  8.         }
  9.         return false;
  10.     }
  1.      * @since  3.0.0
  2.      */
  3.     public static function print_product_player() {
  4.         global $product;
  5.         $product_player self::product_player$productself::get_player_args() );
  6.         if ( $product_player ) {
  7.             echo $product_player//phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
  8.         }
  9.     }
WooCommerce::print_product_player() in /var/www/html/wp-includes/class-wp-hook.php (line 324)
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
WP_Hook->apply_filters() in /var/www/html/wp-includes/class-wp-hook.php (line 348)
  1.      *
  2.      * @param array $args Parameters to pass to the callback functions.
  3.      */
  4.     public function do_action$args ) {
  5.         $this->doing_action true;
  6.         $this->apply_filters''$args );
  7.         // If there are recursive calls to the current action, we haven't finished it until we get to the last one.
  8.         if ( ! $this->nesting_level ) {
  9.             $this->doing_action false;
  10.         }
WP_Hook->do_action() in /var/www/html/wp-includes/plugin.php (line 517)
  1.     } elseif ( is_array$arg[0] ) && === count$arg[0] ) && isset( $arg[0][0] ) && is_object$arg[0][0] ) ) {
  2.         // Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`.
  3.         $arg[0] = $arg[0][0];
  4.     }
  5.     $wp_filter$hook_name ]->do_action$arg );
  6.     array_pop$wp_current_filter );
  7. }
  8. /**
  1.     /**
  2.      * Hook: woocommerce_shop_loop_item_title.
  3.      *
  4.      * @hooked woocommerce_template_loop_product_title - 10
  5.      */
  6.     do_action'woocommerce_shop_loop_item_title' );
  7.     /**
  8.      * Hook: woocommerce_after_shop_loop_item_title.
  9.      *
  10.      * @hooked woocommerce_template_loop_rating - 5
  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. <?= \Roots\view('woocommerce.content-product'$data ?? get_defined_vars())->render(); ?>
  2. <?php /**PATH /var/www/html/wp-content/themes/swamp/resources/views/woocommerce/content-product.blade.php ENDPATH**/ ?>
require('/var/www/html/wp-content/cache/acorn/framework/views/f772eb19544980d1eb3d58fdda880852-loader.php') in /var/www/html/wp-includes/template.php (line 812)
  1.     do_action'wp_before_load_template'$_template_file$load_once$args );
  2.     if ( $load_once ) {
  3.         require_once $_template_file;
  4.     } else {
  5.         require $_template_file;
  6.     }
  7.     /**
  8.      * Fires after a template file is loaded.
  9.      *
  1.     // Allow 3rd party plugins to filter template file from their plugin.
  2.     $template apply_filters'wc_get_template_part'$template$slug$name );
  3.     if ( $template ) {
  4.         load_template$templatefalse );
  5.     }
  6. }
  7. /**
  8.  * Get other templates (e.g. product attributes) passing attributes and including the file.
  1.         <?php if(wc_get_loop_prop('total')): ?>
  2.             <?php while(have_posts()): ?>
  3.                 <?php
  4.                     the_post();
  5.                     do_action('woocommerce_shop_loop');
  6.                     wc_get_template_part('content''product');
  7.                 ?>
  8.             <?php endwhile; ?>
  9.         <?php endif; ?>
  10.         <?php
  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. <?= \Roots\view('woocommerce.archive-product'$data ?? get_defined_vars())->render(); ?>
  2. <?php /**PATH /var/www/html/wp-content/themes/swamp/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
include('/var/www/html/wp-content/cache/acorn/framework/views/dd2e338b6dbe9c2a98a8c0a21d335de4-loader.php') in /var/www/html/wp-content/plugins/woocommerce/includes/wc-core-functions.php (line 345)
  1.         extract$args ); // @codingStandardsIgnoreLine
  2.     }
  3.     do_action'woocommerce_before_template_part'$action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
  4.     include $action_args['located'];
  5.     do_action'woocommerce_after_template_part'$action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
  6. }
  7. /**
  1. if ( ! defined'ABSPATH' ) ) {
  2.     exit; // Exit if accessed directly.
  3. }
  4. wc_get_template'archive-product.php' );
  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.      * @param  array  $data
  2.      * @return string
  3.      */
  4.     public function get($path, array $data = [])
  5.     {
  6.         return $this->evaluatePath($path$data);
  7.     }
  8.     /**
  9.      * Get the evaluated contents of the view at the given path.
  10.      *
  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.   <body <?php body_class('woocommerce-block-theme-has-button-styles'); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9.   </body>
include('/var/www/html/wp-content/themes/swamp/index.php') in /var/www/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('/var/www/html/wp-includes/template-loader.php') in /var/www/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('/var/www/html/wp-blog-header.php') in /var/www/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 3

[3/3] ViewException
Illuminate\View\ViewException:
Undefined array key "path" (View: /var/www/html/wp-content/themes/swamp/resources/views/woocommerce/content-product.blade.php) (View: /var/www/html/wp-content/themes/swamp/resources/views/woocommerce/content-product.blade.php)

  at /var/www/html/wp-content/plugins/waveplayer/includes/class-ajax.php:792
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/html/wp-content/cache/acorn/framework/views/dd2e338b6dbe9c2a98a8c0a21d335de4-loader.php:1)
  at include('/var/www/html/wp-content/cache/acorn/framework/views/dd2e338b6dbe9c2a98a8c0a21d335de4-loader.php')
     (/var/www/html/wp-content/plugins/woocommerce/includes/wc-core-functions.php:345)
  at wc_get_template()
     (/var/www/html/wp-content/plugins/woocommerce/templates/taxonomy-product-attribute.php:22)
  at require('/var/www/html/wp-content/plugins/woocommerce/templates/taxonomy-product-attribute.php')
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/PhpEngine.php:38)
  at Illuminate\View\Engines\PhpEngine->get()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/html/wp-content/themes/swamp/index.php:21)
  at include('/var/www/html/wp-content/themes/swamp/index.php')
     (/var/www/html/wp-includes/template-loader.php:106)
  at require_once('/var/www/html/wp-includes/template-loader.php')
     (/var/www/html/wp-blog-header.php:19)
  at require('/var/www/html/wp-blog-header.php')
     (/var/www/html/index.php:17)                
[2/3] ViewException
Illuminate\View\ViewException:
Undefined array key "path" (View: /var/www/html/wp-content/themes/swamp/resources/views/woocommerce/content-product.blade.php)

  at /var/www/html/wp-content/plugins/waveplayer/includes/class-ajax.php:792
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/html/wp-content/cache/acorn/framework/views/f772eb19544980d1eb3d58fdda880852-loader.php:1)
  at require('/var/www/html/wp-content/cache/acorn/framework/views/f772eb19544980d1eb3d58fdda880852-loader.php')
     (/var/www/html/wp-includes/template.php:812)
  at load_template()
     (/var/www/html/wp-content/plugins/woocommerce/includes/wc-core-functions.php:284)
  at wc_get_template_part()
     (/var/www/html/wp-content/cache/acorn/framework/views/0287ad41f444c9c7aaf43a1fa2d6ad43980bf3dc.php:42)
  at require('/var/www/html/wp-content/cache/acorn/framework/views/0287ad41f444c9c7aaf43a1fa2d6ad43980bf3dc.php')
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/html/wp-content/cache/acorn/framework/views/dd2e338b6dbe9c2a98a8c0a21d335de4-loader.php:1)
  at include('/var/www/html/wp-content/cache/acorn/framework/views/dd2e338b6dbe9c2a98a8c0a21d335de4-loader.php')
     (/var/www/html/wp-content/plugins/woocommerce/includes/wc-core-functions.php:345)
  at wc_get_template()
     (/var/www/html/wp-content/plugins/woocommerce/templates/taxonomy-product-attribute.php:22)
  at require('/var/www/html/wp-content/plugins/woocommerce/templates/taxonomy-product-attribute.php')
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/PhpEngine.php:38)
  at Illuminate\View\Engines\PhpEngine->get()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/html/wp-content/themes/swamp/index.php:21)
  at include('/var/www/html/wp-content/themes/swamp/index.php')
     (/var/www/html/wp-includes/template-loader.php:106)
  at require_once('/var/www/html/wp-includes/template-loader.php')
     (/var/www/html/wp-blog-header.php:19)
  at require('/var/www/html/wp-blog-header.php')
     (/var/www/html/index.php:17)                
[1/3] ErrorException
ErrorException:
Undefined array key "path"

  at /var/www/html/wp-content/plugins/waveplayer/includes/class-ajax.php:792
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError()
     (/var/www/html/wp-content/themes/swamp/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:54)
  at Roots\Acorn\Bootstrap\HandleExceptions->handleError()
     (/var/www/html/wp-content/plugins/waveplayer/includes/class-ajax.php:792)
  at PerfectPeach\WavePlayer\AJAX::create_external_playlist()
     (/var/www/html/wp-content/plugins/waveplayer/includes/class-renderer.php:1015)
  at PerfectPeach\WavePlayer\Renderer::shortcode_content()
     (/var/www/html/wp-content/plugins/waveplayer/includes/class-renderer.php:894)
  at PerfectPeach\WavePlayer\Renderer::waveplayer_shortcode()
     (/var/www/html/wp-includes/shortcodes.php:433)
  at do_shortcode_tag()
  at preg_replace_callback()
     (/var/www/html/wp-includes/shortcodes.php:273)
  at do_shortcode()
     (/var/www/html/wp-content/plugins/waveplayer/includes/class-woocommerce.php:739)
  at PerfectPeach\WavePlayer\WooCommerce::product_player()
     (/var/www/html/wp-content/plugins/waveplayer/includes/class-woocommerce.php:755)
  at PerfectPeach\WavePlayer\WooCommerce::print_product_player()
     (/var/www/html/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters()
     (/var/www/html/wp-includes/class-wp-hook.php:348)
  at WP_Hook->do_action()
     (/var/www/html/wp-includes/plugin.php:517)
  at do_action()
     (/var/www/html/wp-content/cache/acorn/framework/views/e09dfe86dc4133e8bdbd6dee5ce9e7cff43b995d.php:51)
  at require('/var/www/html/wp-content/cache/acorn/framework/views/e09dfe86dc4133e8bdbd6dee5ce9e7cff43b995d.php')
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/html/wp-content/cache/acorn/framework/views/f772eb19544980d1eb3d58fdda880852-loader.php:1)
  at require('/var/www/html/wp-content/cache/acorn/framework/views/f772eb19544980d1eb3d58fdda880852-loader.php')
     (/var/www/html/wp-includes/template.php:812)
  at load_template()
     (/var/www/html/wp-content/plugins/woocommerce/includes/wc-core-functions.php:284)
  at wc_get_template_part()
     (/var/www/html/wp-content/cache/acorn/framework/views/0287ad41f444c9c7aaf43a1fa2d6ad43980bf3dc.php:42)
  at require('/var/www/html/wp-content/cache/acorn/framework/views/0287ad41f444c9c7aaf43a1fa2d6ad43980bf3dc.php')
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/html/wp-content/cache/acorn/framework/views/dd2e338b6dbe9c2a98a8c0a21d335de4-loader.php:1)
  at include('/var/www/html/wp-content/cache/acorn/framework/views/dd2e338b6dbe9c2a98a8c0a21d335de4-loader.php')
     (/var/www/html/wp-content/plugins/woocommerce/includes/wc-core-functions.php:345)
  at wc_get_template()
     (/var/www/html/wp-content/plugins/woocommerce/templates/taxonomy-product-attribute.php:22)
  at require('/var/www/html/wp-content/plugins/woocommerce/templates/taxonomy-product-attribute.php')
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/Engines/PhpEngine.php:38)
  at Illuminate\View\Engines\PhpEngine->get()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:139)
  at Illuminate\View\View->getContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:122)
  at Illuminate\View\View->renderContents()
     (/var/www/html/wp-content/themes/swamp/vendor/illuminate/view/View.php:91)
  at Illuminate\View\View->render()
     (/var/www/html/wp-content/themes/swamp/index.php:21)
  at include('/var/www/html/wp-content/themes/swamp/index.php')
     (/var/www/html/wp-includes/template-loader.php:106)
  at require_once('/var/www/html/wp-includes/template-loader.php')
     (/var/www/html/wp-blog-header.php:19)
  at require('/var/www/html/wp-blog-header.php')
     (/var/www/html/index.php:17)