$backgroundColor = get_field('header_banner_background_color', 'option');
$backgroundColor = $backgroundColor ? $backgroundColor : '#000000';
$textColor = get_field('header_banner_text_color', 'option');
$textColor = $textColor ? $textColor : '#ffffff';
$countdown_date = get_field('header_banner_countdown', 'option');
$iso_countdown_date = DateTime::createFromFormat('d/m/Y g:i a', $countdown_date)->format('Y-m-d H:i:s');
$link = get_field('header_banner_link', 'option');
?>
<div class="header-banner__container" style="background-color: <?php echo e($backgroundColor); ?>;color: <?php echo e($textColor); ?>;">
<?php if($link): ?>
<a href="<?php echo e($link); ?>"
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?= \Roots\view('woocommerce.archive-product', $data ?? get_defined_vars())->render(); ?>
<?php /**PATH /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
extract( $args ); // @codingStandardsIgnoreLine
}
do_action( 'woocommerce_before_template_part', $action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
include $action_args['located'];
do_action( 'woocommerce_after_template_part', $action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
}
/**
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
wc_get_template( 'archive-product.php' );
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
return $this->evaluatePath($path, $data);
}
/**
* Get the evaluated contents of the view at the given path.
*
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<div id="app">
<?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
</div>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
</body>
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
<?php
/**
* WordPress View Bootstrapper
*/
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
$backgroundColor = get_field('header_banner_background_color', 'option');
$backgroundColor = $backgroundColor ? $backgroundColor : '#000000';
$textColor = get_field('header_banner_text_color', 'option');
$textColor = $textColor ? $textColor : '#ffffff';
$countdown_date = get_field('header_banner_countdown', 'option');
$iso_countdown_date = DateTime::createFromFormat('d/m/Y g:i a', $countdown_date)->format('Y-m-d H:i:s');
$link = get_field('header_banner_link', 'option');
?>
<div class="header-banner__container" style="background-color: <?php echo e($backgroundColor); ?>;color: <?php echo e($textColor); ?>;">
<?php if($link): ?>
<a href="<?php echo e($link); ?>"
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php $__env->startSection('content'); ?>
<?php echo $__env->make('components.shop-hero', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->make('partials.content-shop', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?= \Roots\view('woocommerce.archive-product', $data ?? get_defined_vars())->render(); ?>
<?php /**PATH /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
extract( $args ); // @codingStandardsIgnoreLine
}
do_action( 'woocommerce_before_template_part', $action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
include $action_args['located'];
do_action( 'woocommerce_after_template_part', $action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
}
/**
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
wc_get_template( 'archive-product.php' );
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
return $this->evaluatePath($path, $data);
}
/**
* Get the evaluated contents of the view at the given path.
*
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<div id="app">
<?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
</div>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
</body>
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
<?php
/**
* WordPress View Bootstrapper
*/
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
$backgroundColor = get_field('header_banner_background_color', 'option');
$backgroundColor = $backgroundColor ? $backgroundColor : '#000000';
$textColor = get_field('header_banner_text_color', 'option');
$textColor = $textColor ? $textColor : '#ffffff';
$countdown_date = get_field('header_banner_countdown', 'option');
$iso_countdown_date = DateTime::createFromFormat('d/m/Y g:i a', $countdown_date)->format('Y-m-d H:i:s');
$link = get_field('header_banner_link', 'option');
?>
<div class="header-banner__container" style="background-color: <?php echo e($backgroundColor); ?>;color: <?php echo e($textColor); ?>;">
<?php if($link): ?>
<a href="<?php echo e($link); ?>"
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php echo $__env->make('sections.header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<main id="main" class="main">
<?php echo $__env->yieldContent('content'); ?>
</main>
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php $__env->startSection('content'); ?>
<?php echo $__env->make('components.shop-hero', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->make('partials.content-shop', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?= \Roots\view('woocommerce.archive-product', $data ?? get_defined_vars())->render(); ?>
<?php /**PATH /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
extract( $args ); // @codingStandardsIgnoreLine
}
do_action( 'woocommerce_before_template_part', $action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
include $action_args['located'];
do_action( 'woocommerce_after_template_part', $action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
}
/**
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
wc_get_template( 'archive-product.php' );
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
return $this->evaluatePath($path, $data);
}
/**
* Get the evaluated contents of the view at the given path.
*
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<div id="app">
<?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
</div>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
</body>
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
<?php
/**
* WordPress View Bootstrapper
*/
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
$backgroundColor = get_field('header_banner_background_color', 'option');
$backgroundColor = $backgroundColor ? $backgroundColor : '#000000';
$textColor = get_field('header_banner_text_color', 'option');
$textColor = $textColor ? $textColor : '#ffffff';
$countdown_date = get_field('header_banner_countdown', 'option');
$iso_countdown_date = DateTime::createFromFormat('d/m/Y g:i a', $countdown_date)->format('Y-m-d H:i:s');
$link = get_field('header_banner_link', 'option');
?>
<div class="header-banner__container" style="background-color: <?php echo e($backgroundColor); ?>;color: <?php echo e($textColor); ?>;">
<?php if($link): ?>
<a href="<?php echo e($link); ?>"
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<div class="header__wrapper">
<?php echo $__env->make('components.header-banner', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<header class="header">
<div class="large-container">
<div class="header__navigation-container">
<?php if(has_nav_menu('primary_navigation')): ?>
<nav class="nav-primary" aria-label="<?php echo e(wp_get_nav_menu_name('primary_navigation')); ?>">
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php echo $__env->make('sections.header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<main id="main" class="main">
<?php echo $__env->yieldContent('content'); ?>
</main>
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php $__env->startSection('content'); ?>
<?php echo $__env->make('components.shop-hero', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->make('partials.content-shop', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?= \Roots\view('woocommerce.archive-product', $data ?? get_defined_vars())->render(); ?>
<?php /**PATH /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
extract( $args ); // @codingStandardsIgnoreLine
}
do_action( 'woocommerce_before_template_part', $action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
include $action_args['located'];
do_action( 'woocommerce_after_template_part', $action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
}
/**
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
wc_get_template( 'archive-product.php' );
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
return $this->evaluatePath($path, $data);
}
/**
* Get the evaluated contents of the view at the given path.
*
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<div id="app">
<?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
</div>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
</body>
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
<?php
/**
* WordPress View Bootstrapper
*/
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
$backgroundColor = get_field('header_banner_background_color', 'option');
$backgroundColor = $backgroundColor ? $backgroundColor : '#000000';
$textColor = get_field('header_banner_text_color', 'option');
$textColor = $textColor ? $textColor : '#ffffff';
$countdown_date = get_field('header_banner_countdown', 'option');
$iso_countdown_date = DateTime::createFromFormat('d/m/Y g:i a', $countdown_date)->format('Y-m-d H:i:s');
$link = get_field('header_banner_link', 'option');
?>
<div class="header-banner__container" style="background-color: <?php echo e($backgroundColor); ?>;color: <?php echo e($textColor); ?>;">
<?php if($link): ?>
<a href="<?php echo e($link); ?>"
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<div class="header__wrapper">
<?php echo $__env->make('components.header-banner', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<header class="header">
<div class="large-container">
<div class="header__navigation-container">
<?php if(has_nav_menu('primary_navigation')): ?>
<nav class="nav-primary" aria-label="<?php echo e(wp_get_nav_menu_name('primary_navigation')); ?>">
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php echo $__env->make('sections.header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<main id="main" class="main">
<?php echo $__env->yieldContent('content'); ?>
</main>
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?php $__env->startSection('content'); ?>
<?php echo $__env->make('components.shop-hero', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->make('partials.content-shop', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<?= \Roots\view('woocommerce.archive-product', $data ?? get_defined_vars())->render(); ?>
<?php /**PATH /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/woocommerce/archive-product.blade.php ENDPATH**/ ?>
extract( $args ); // @codingStandardsIgnoreLine
}
do_action( 'woocommerce_before_template_part', $action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
include $action_args['located'];
do_action( 'woocommerce_after_template_part', $action_args['template_name'], $action_args['template_path'], $action_args['located'], $action_args['args'] );
}
/**
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
wc_get_template( 'archive-product.php' );
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
return $this->evaluatePath($path, $data);
}
/**
* Get the evaluated contents of the view at the given path.
*
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php do_action('get_header'); ?>
<div id="app">
<?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
</div>
<?php do_action('get_footer'); ?>
<?php wp_footer(); ?>
</body>
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
<?php
/**
* WordPress View Bootstrapper
*/
define('WP_USE_THEMES', true);
require __DIR__ . '/wp/wp-blog-header.php';
[5/5]
ViewException
|
---|
Illuminate\View\ViewException: Call to a member function format() on bool (View: /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/components/header-banner.blade.php) (View: /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/components/header-banner.blade.php) (View: /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/components/header-banner.blade.php) (View: /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/components/header-banner.blade.php) at /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/c41ab8e55b739fc06ccbe58f35e144490b5f2d1a.php:8 at Illuminate\View\Engines\CompilerEngine->handleViewException() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/a3ae2b7e2ffb4b961986d0599d3b478d-loader.php:1) at include('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/a3ae2b7e2ffb4b961986d0599d3b478d-loader.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/includes/wc-core-functions.php:345) at wc_get_template() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/templates/taxonomy-product-cat.php:22) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/templates/taxonomy-product-cat.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:38) at Illuminate\View\Engines\PhpEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/index.php:14) at include('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/index.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-includes/template-loader.php:106) at require_once('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-includes/template-loader.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-blog-header.php:19) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-blog-header.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/index.php:6) |
[4/5]
ViewException
|
---|
Illuminate\View\ViewException: Call to a member function format() on bool (View: /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/components/header-banner.blade.php) (View: /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/components/header-banner.blade.php) (View: /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/components/header-banner.blade.php) at /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/c41ab8e55b739fc06ccbe58f35e144490b5f2d1a.php:8 at Illuminate\View\Engines\CompilerEngine->handleViewException() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/2eecfdf5152f7d18af0b1e194ed01ca51453059f.php:6) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/2eecfdf5152f7d18af0b1e194ed01ca51453059f.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/a3ae2b7e2ffb4b961986d0599d3b478d-loader.php:1) at include('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/a3ae2b7e2ffb4b961986d0599d3b478d-loader.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/includes/wc-core-functions.php:345) at wc_get_template() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/templates/taxonomy-product-cat.php:22) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/templates/taxonomy-product-cat.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:38) at Illuminate\View\Engines\PhpEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/index.php:14) at include('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/index.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-includes/template-loader.php:106) at require_once('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-includes/template-loader.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-blog-header.php:19) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-blog-header.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/index.php:6) |
[3/5]
ViewException
|
---|
Illuminate\View\ViewException: Call to a member function format() on bool (View: /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/components/header-banner.blade.php) (View: /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/components/header-banner.blade.php) at /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/c41ab8e55b739fc06ccbe58f35e144490b5f2d1a.php:8 at Illuminate\View\Engines\CompilerEngine->handleViewException() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/43b196be0f602d455c73214a16c5ff03c2f309c9.php:1) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/43b196be0f602d455c73214a16c5ff03c2f309c9.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/2eecfdf5152f7d18af0b1e194ed01ca51453059f.php:6) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/2eecfdf5152f7d18af0b1e194ed01ca51453059f.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/a3ae2b7e2ffb4b961986d0599d3b478d-loader.php:1) at include('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/a3ae2b7e2ffb4b961986d0599d3b478d-loader.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/includes/wc-core-functions.php:345) at wc_get_template() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/templates/taxonomy-product-cat.php:22) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/templates/taxonomy-product-cat.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:38) at Illuminate\View\Engines\PhpEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/index.php:14) at include('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/index.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-includes/template-loader.php:106) at require_once('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-includes/template-loader.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-blog-header.php:19) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-blog-header.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/index.php:6) |
[2/5]
ViewException
|
---|
Illuminate\View\ViewException: Call to a member function format() on bool (View: /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/resources/views/components/header-banner.blade.php) at /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/c41ab8e55b739fc06ccbe58f35e144490b5f2d1a.php:8 at Illuminate\View\Engines\CompilerEngine->handleViewException() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/15a7dd85a5ee1c650b3113e48c5c7e95b1c25748.php:2) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/15a7dd85a5ee1c650b3113e48c5c7e95b1c25748.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/43b196be0f602d455c73214a16c5ff03c2f309c9.php:1) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/43b196be0f602d455c73214a16c5ff03c2f309c9.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/2eecfdf5152f7d18af0b1e194ed01ca51453059f.php:6) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/2eecfdf5152f7d18af0b1e194ed01ca51453059f.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/a3ae2b7e2ffb4b961986d0599d3b478d-loader.php:1) at include('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/a3ae2b7e2ffb4b961986d0599d3b478d-loader.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/includes/wc-core-functions.php:345) at wc_get_template() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/templates/taxonomy-product-cat.php:22) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/templates/taxonomy-product-cat.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:38) at Illuminate\View\Engines\PhpEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/index.php:14) at include('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/index.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-includes/template-loader.php:106) at require_once('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-includes/template-loader.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-blog-header.php:19) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-blog-header.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/index.php:6) |
[1/5]
Error
|
---|
Error: Call to a member function format() on bool at /var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/c41ab8e55b739fc06ccbe58f35e144490b5f2d1a.php:8 at require() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/15a7dd85a5ee1c650b3113e48c5c7e95b1c25748.php:2) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/15a7dd85a5ee1c650b3113e48c5c7e95b1c25748.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/43b196be0f602d455c73214a16c5ff03c2f309c9.php:1) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/43b196be0f602d455c73214a16c5ff03c2f309c9.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/2eecfdf5152f7d18af0b1e194ed01ca51453059f.php:6) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/2eecfdf5152f7d18af0b1e194ed01ca51453059f.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/CompilerEngine.php:61) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/a3ae2b7e2ffb4b961986d0599d3b478d-loader.php:1) at include('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/cache/acorn/framework/views/a3ae2b7e2ffb4b961986d0599d3b478d-loader.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/includes/wc-core-functions.php:345) at wc_get_template() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/templates/taxonomy-product-cat.php:22) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/plugins/woocommerce/templates/taxonomy-product-cat.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:107) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/filesystem/Filesystem.php:108) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/Engines/PhpEngine.php:38) at Illuminate\View\Engines\PhpEngine->get() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:139) at Illuminate\View\View->getContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:122) at Illuminate\View\View->renderContents() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/vendor/illuminate/view/View.php:91) at Illuminate\View\View->render() (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/index.php:14) at include('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/app/themes/spentshells-custom-theme/index.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-includes/template-loader.php:106) at require_once('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-includes/template-loader.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-blog-header.php:19) at require('/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/wp/wp-blog-header.php') (/var/www/0377-spentshells-website/releases/daeedd86d864b4ce74b5821d857788f82a97a870-20230531110813/web/index.php:6) |