Illuminate\View\ViewException {#3136 #severity: E_ERROR }
$writer_title = $title['title'];
}
}
}
if ($story->article_format == 'column' && $writer->writer_tag) {
echo '<span class="writer-title writer-tag">' . $writer->writer_tag . '</span>';
} else {
echo '<span class="writer-title">' . $writer_title . '</span>';
}
} else {
// 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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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';
}
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
$writer_title = $title['title'];
}
}
}
if ($story->article_format == 'column' && $writer->writer_tag) {
echo '<span class="writer-title writer-tag">' . $writer->writer_tag . '</span>';
} else {
echo '<span class="writer-title">' . $writer_title . '</span>';
}
} else {
// 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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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 while(have_posts()): ?>
<?php (the_post()); ?>
<?php echo $__env->first(['partials.content-single-' . get_post_type(), 'partials.content-single'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endwhile; ?>
<?php $__env->stopSection(); ?>
$__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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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';
}
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
$writer_title = $title['title'];
}
}
}
if ($story->article_format == 'column' && $writer->writer_tag) {
echo '<span class="writer-title writer-tag">' . $writer->writer_tag . '</span>';
} else {
echo '<span class="writer-title">' . $writer_title . '</span>';
}
} else {
// 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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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
<h1 class="article-h">
<?php echo $title; ?>
</h1>
<?php echo $__env->make('partials.article-dom', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->make('partials.entry-meta', ['writers' => $writers], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</header>
<div
class="e-content justify-center place-content-center break-after-auto flex flex-col space-y-4 border-t border-gray-500 pt-4">
$__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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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 while(have_posts()): ?>
<?php (the_post()); ?>
<?php echo $__env->first(['partials.content-single-' . get_post_type(), 'partials.content-single'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endwhile; ?>
<?php $__env->stopSection(); ?>
$__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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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';
}
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
$writer_title = $title['title'];
}
}
}
if ($story->article_format == 'column' && $writer->writer_tag) {
echo '<span class="writer-title writer-tag">' . $writer->writer_tag . '</span>';
} else {
echo '<span class="writer-title">' . $writer_title . '</span>';
}
} else {
// 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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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
try {
$view = value($view, $data);
if ($view instanceof View) {
return $view->with($data)->render();
} elseif ($view instanceof Htmlable) {
return $view->toHtml();
} else {
return $this->make($view, $data)->render();
}
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\EuclidWriter::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginalda903320696bd5a37c6fc6f0b27b0216)): ?>
<?php $attributes = $__attributesOriginalda903320696bd5a37c6fc6f0b27b0216; ?>
<?php unset($__attributesOriginalda903320696bd5a37c6fc6f0b27b0216); ?>
<?php endif; ?>
$__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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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
<h1 class="article-h">
<?php echo $title; ?>
</h1>
<?php echo $__env->make('partials.article-dom', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->make('partials.entry-meta', ['writers' => $writers], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</header>
<div
class="e-content justify-center place-content-center break-after-auto flex flex-col space-y-4 border-t border-gray-500 pt-4">
$__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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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 while(have_posts()): ?>
<?php (the_post()); ?>
<?php echo $__env->first(['partials.content-single-' . get_post_type(), 'partials.content-single'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endwhile; ?>
<?php $__env->stopSection(); ?>
$__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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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';
}
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
$writer_title = $title['title'];
}
}
}
if ($story->article_format == 'column' && $writer->writer_tag) {
echo '<span class="writer-title writer-tag">' . $writer->writer_tag . '</span>';
} else {
echo '<span class="writer-title">' . $writer_title . '</span>';
}
} else {
* @throws \ErrorException
*/
public function handleError($level, $message, $file = '', $line = 0, $context = [])
{
try {
parent::handleError($level, $message, $file, $line, $context);
} catch (Throwable $e) {
if (! apply_filters('acorn/throw_error_exception', true, $e)) {
return false;
}
$writer_title = $title['title'];
}
}
}
if ($story->article_format == 'column' && $writer->writer_tag) {
echo '<span class="writer-title writer-tag">' . $writer->writer_tag . '</span>';
} else {
echo '<span class="writer-title">' . $writer_title . '</span>';
}
} else {
$__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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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
try {
$view = value($view, $data);
if ($view instanceof View) {
return $view->with($data)->render();
} elseif ($view instanceof Htmlable) {
return $view->toHtml();
} else {
return $this->make($view, $data)->render();
}
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\EuclidWriter::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginalda903320696bd5a37c6fc6f0b27b0216)): ?>
<?php $attributes = $__attributesOriginalda903320696bd5a37c6fc6f0b27b0216; ?>
<?php unset($__attributesOriginalda903320696bd5a37c6fc6f0b27b0216); ?>
<?php endif; ?>
$__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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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
<h1 class="article-h">
<?php echo $title; ?>
</h1>
<?php echo $__env->make('partials.article-dom', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->make('partials.entry-meta', ['writers' => $writers], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</header>
<div
class="e-content justify-center place-content-center break-after-auto flex flex-col space-y-4 border-t border-gray-500 pt-4">
$__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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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 while(have_posts()): ?>
<?php (the_post()); ?>
<?php echo $__env->first(['partials.content-single-' . get_post_type(), 'partials.content-single'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endwhile; ?>
<?php $__env->stopSection(); ?>
$__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.
try {
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
} catch (ViewException $e) {
if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
throw $e;
}
*
* @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 section gets 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';
}
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
[5/5]
ViewException
|
---|
Illuminate\View\ViewException: Attempt to read property "article_format" on null (View: /var/www/dailyorange.com/wp-content/themes/euclid-sage/resources/views/components/euclid-writer.blade.php) (View: /var/www/dailyorange.com/wp-content/themes/euclid-sage/resources/views/components/euclid-writer.blade.php) (View: /var/www/dailyorange.com/wp-content/themes/euclid-sage/resources/views/components/euclid-writer.blade.php) (View: /var/www/dailyorange.com/wp-content/themes/euclid-sage/resources/views/components/euclid-writer.blade.php) at /var/www/dailyorange.com/wp-content/cache/acorn/framework/views/8e01be55fd7d7bae07ba41383d262891.php:56 at Illuminate\View\Engines\CompilerEngine->handleViewException() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/index.php:29) at include('/var/www/dailyorange.com/wp-content/themes/euclid-sage/index.php') (/var/www/dailyorange.com/wp-includes/template-loader.php:106) at require_once('/var/www/dailyorange.com/wp-includes/template-loader.php') (/var/www/dailyorange.com/wp-blog-header.php:19) at require('/var/www/dailyorange.com/wp-blog-header.php') (/var/www/dailyorange.com/index.php:17) |
[4/5]
ViewException
|
---|
Illuminate\View\ViewException: Attempt to read property "article_format" on null (View: /var/www/dailyorange.com/wp-content/themes/euclid-sage/resources/views/components/euclid-writer.blade.php) (View: /var/www/dailyorange.com/wp-content/themes/euclid-sage/resources/views/components/euclid-writer.blade.php) (View: /var/www/dailyorange.com/wp-content/themes/euclid-sage/resources/views/components/euclid-writer.blade.php) at /var/www/dailyorange.com/wp-content/cache/acorn/framework/views/8e01be55fd7d7bae07ba41383d262891.php:56 at Illuminate\View\Engines\CompilerEngine->handleViewException() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/5cb8ae41c8e61af609abe133bb5c6954.php:4) at require('/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/5cb8ae41c8e61af609abe133bb5c6954.php') (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/index.php:29) at include('/var/www/dailyorange.com/wp-content/themes/euclid-sage/index.php') (/var/www/dailyorange.com/wp-includes/template-loader.php:106) at require_once('/var/www/dailyorange.com/wp-includes/template-loader.php') (/var/www/dailyorange.com/wp-blog-header.php:19) at require('/var/www/dailyorange.com/wp-blog-header.php') (/var/www/dailyorange.com/index.php:17) |
[3/5]
ViewException
|
---|
Illuminate\View\ViewException: Attempt to read property "article_format" on null (View: /var/www/dailyorange.com/wp-content/themes/euclid-sage/resources/views/components/euclid-writer.blade.php) (View: /var/www/dailyorange.com/wp-content/themes/euclid-sage/resources/views/components/euclid-writer.blade.php) at /var/www/dailyorange.com/wp-content/cache/acorn/framework/views/8e01be55fd7d7bae07ba41383d262891.php:56 at Illuminate\View\Engines\CompilerEngine->handleViewException() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/00823ecb138571d0c9cfa30e7b0fd4ec.php:33) at require('/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/00823ecb138571d0c9cfa30e7b0fd4ec.php') (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/5cb8ae41c8e61af609abe133bb5c6954.php:4) at require('/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/5cb8ae41c8e61af609abe133bb5c6954.php') (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/index.php:29) at include('/var/www/dailyorange.com/wp-content/themes/euclid-sage/index.php') (/var/www/dailyorange.com/wp-includes/template-loader.php:106) at require_once('/var/www/dailyorange.com/wp-includes/template-loader.php') (/var/www/dailyorange.com/wp-blog-header.php:19) at require('/var/www/dailyorange.com/wp-blog-header.php') (/var/www/dailyorange.com/index.php:17) |
[2/5]
ViewException
|
---|
Illuminate\View\ViewException: Attempt to read property "article_format" on null (View: /var/www/dailyorange.com/wp-content/themes/euclid-sage/resources/views/components/euclid-writer.blade.php) at /var/www/dailyorange.com/wp-content/cache/acorn/framework/views/8e01be55fd7d7bae07ba41383d262891.php:56 at Illuminate\View\Engines\CompilerEngine->handleViewException() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Concerns/ManagesComponents.php:99) at Illuminate\View\Factory->renderComponent() (/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/90a95b9724a611104fb25dd42198d160.php:12) at require('/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/90a95b9724a611104fb25dd42198d160.php') (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/00823ecb138571d0c9cfa30e7b0fd4ec.php:33) at require('/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/00823ecb138571d0c9cfa30e7b0fd4ec.php') (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/5cb8ae41c8e61af609abe133bb5c6954.php:4) at require('/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/5cb8ae41c8e61af609abe133bb5c6954.php') (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/index.php:29) at include('/var/www/dailyorange.com/wp-content/themes/euclid-sage/index.php') (/var/www/dailyorange.com/wp-includes/template-loader.php:106) at require_once('/var/www/dailyorange.com/wp-includes/template-loader.php') (/var/www/dailyorange.com/wp-blog-header.php:19) at require('/var/www/dailyorange.com/wp-blog-header.php') (/var/www/dailyorange.com/index.php:17) |
[1/5]
ErrorException
|
---|
ErrorException: Attempt to read property "article_format" on null at /var/www/dailyorange.com/wp-content/cache/acorn/framework/views/8e01be55fd7d7bae07ba41383d262891.php:56 at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:49) at Roots\Acorn\Bootstrap\HandleExceptions->handleError() (/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/8e01be55fd7d7bae07ba41383d262891.php:56) at require('/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/8e01be55fd7d7bae07ba41383d262891.php') (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Concerns/ManagesComponents.php:99) at Illuminate\View\Factory->renderComponent() (/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/90a95b9724a611104fb25dd42198d160.php:12) at require('/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/90a95b9724a611104fb25dd42198d160.php') (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/00823ecb138571d0c9cfa30e7b0fd4ec.php:33) at require('/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/00823ecb138571d0c9cfa30e7b0fd4ec.php') (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/5cb8ae41c8e61af609abe133bb5c6954.php:4) at require('/var/www/dailyorange.com/wp-content/cache/acorn/framework/views/5cb8ae41c8e61af609abe133bb5c6954.php') (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:207) at Illuminate\View\View->getContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:190) at Illuminate\View\View->renderContents() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/vendor/illuminate/view/View.php:159) at Illuminate\View\View->render() (/var/www/dailyorange.com/wp-content/themes/euclid-sage/index.php:29) at include('/var/www/dailyorange.com/wp-content/themes/euclid-sage/index.php') (/var/www/dailyorange.com/wp-includes/template-loader.php:106) at require_once('/var/www/dailyorange.com/wp-includes/template-loader.php') (/var/www/dailyorange.com/wp-blog-header.php:19) at require('/var/www/dailyorange.com/wp-blog-header.php') (/var/www/dailyorange.com/index.php:17) |