Symfony Exception

ErrorException ViewException

HTTP 500 Internal Server Error

Trying to access array offset on null (View: /home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/resources/views/sections/header.blade.php)

Exceptions 2

Illuminate\View\ ViewException

Show exception properties
Illuminate\View\ViewException {#11676
  #severity: E_ERROR
}
  1. <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
  2. </ul>
  3. </nav>
  4. <div class="links-wrapper">
  5. <?php $__currentLoopData = $header_settings['links']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $link): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
  6. <?php if(isset($link['cta']['url'])): ?>
  7. <a href="<?php echo e($link['cta']['url']); ?>" target="<?php echo e($link['cta']['target'] ?? '_self'); ?>" class="btn btn-header">
  8. <?php if(isset($link['icon']['ID'])): ?>
  9. <?php echo render_image($link['icon']['ID'], 'medium', ['class' => 'link-icon']); ?>
  1. // flush out any stray output that might get out before an error occurs or
  2. // an exception is thrown. This prevents any partial views from leaking.
  3. try {
  4. $this->files->getRequire($path, $data);
  5. } catch (Throwable $e) {
  6. $this->handleViewException($e, $obLevel);
  7. }
  8. return ltrim(ob_get_clean());
  9. }
  1. // Once we have the path to the compiled file, we will evaluate the paths with
  2. // typical PHP just like any other templates. We also keep a stack of views
  3. // which have been rendered for right exception messages to be generated.
  4. try {
  5. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6. } catch (ViewException $e) {
  7. if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
  8. throw $e;
  9. }
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. *
  2. * @throws \Throwable
  3. */
  4. public function __toString()
  5. {
  6. return $this->render();
  7. }
  8. }
  1. <body <?php body_class() ?>>
  2. <?php wp_body_open() ?>
  3. <div id="app">
  4. <?= view('sections.header') ?>
require_once('/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/header-shop.php') in /home/monsterbitemadwi/public_html/wp-includes/template.php (line 814)
  1. * @param array $args Additional arguments passed to the template.
  2. */
  3. do_action( 'wp_before_load_template', $_template_file, $load_once, $args );
  4. if ( $load_once ) {
  5. require_once $_template_file;
  6. } else {
  7. require $_template_file;
  8. }
  9. /**
  1. break;
  2. }
  3. }
  4. if ( $load && '' !== $located ) {
  5. load_template( $located, $load_once, $args );
  6. }
  7. return $located;
  8. }
  1. $templates[] = "header-{$name}.php";
  2. }
  3. $templates[] = 'header.php';
  4. if ( ! locate_template( $templates, true, true, $args ) ) {
  5. return false;
  6. }
  7. }
  8. /**
  1. if ( ! defined( 'ABSPATH' ) ) {
  2. exit; // Exit if accessed directly
  3. }
  4. get_header( 'shop' ); ?>
  5. <?php
  6. /**
  7. * woocommerce_before_main_content hook.
  8. *
  1. $__data = $data;
  2. return (static function () use ($__path, $__data) {
  3. extract($__data, EXTR_SKIP);
  4. return require $__path;
  5. })();
  6. }
  7. throw new FileNotFoundException("File does not exist at path {$path}.");
  8. }
in /home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/filesystem/Filesystem.php :: {closure:Illuminate\Filesystem\Filesystem::getRequire():120} (line 124)
  1. return (static function () use ($__path, $__data) {
  2. extract($__data, EXTR_SKIP);
  3. return require $__path;
  4. })();
  5. }
  6. throw new FileNotFoundException("File does not exist at path {$path}.");
  7. }
  1. // We'll evaluate the contents of the view inside a try/catch block so we can
  2. // flush out any stray output that might get out before an error occurs or
  3. // an exception is thrown. This prevents any partial views from leaking.
  4. try {
  5. $this->files->getRequire($path, $data);
  6. } catch (Throwable $e) {
  7. $this->handleViewException($e, $obLevel);
  8. }
  9. return ltrim(ob_get_clean());
  1. * @param array $data
  2. * @return string
  3. */
  4. public function get($path, array $data = [])
  5. {
  6. return $this->evaluatePath($path, $data);
  7. }
  8. /**
  9. * Get the evaluated contents of the view at the given path.
  10. *
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. <?php
  2. echo view(app('sage.view'), app('sage.data'))->render();
include('/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/index.php') in /home/monsterbitemadwi/public_html/wp-includes/template-loader.php (line 132)
  1. *
  2. * @param string $template The path of the template about to be included.
  3. */
  4. do_action( 'wp_before_include_template', $template );
  5. include $template;
  6. } elseif ( current_user_can( 'switch_themes' ) ) {
  7. $theme = wp_get_theme();
  8. if ( $theme->errors() ) {
  9. wp_die( $theme->errors() );
  10. }
require_once('/home/monsterbitemadwi/public_html/wp-includes/template-loader.php') in /home/monsterbitemadwi/public_html/wp-blog-header.php (line 19)
  1. // Set up the WordPress query.
  2. wp();
  3. // Load the theme template.
  4. require_once ABSPATH . WPINC . '/template-loader.php';
  5. }
require('/home/monsterbitemadwi/public_html/wp-blog-header.php') in /home/monsterbitemadwi/public_html/index.php (line 17)
  1. * @var bool
  2. */
  3. define( 'WP_USE_THEMES', true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ . '/wp-blog-header.php';

ErrorException

Trying to access array offset on null

  1. <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
  2. </ul>
  3. </nav>
  4. <div class="links-wrapper">
  5. <?php $__currentLoopData = $header_settings['links']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $link): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
  6. <?php if(isset($link['cta']['url'])): ?>
  7. <a href="<?php echo e($link['cta']['url']); ?>" target="<?php echo e($link['cta']['target'] ?? '_self'); ?>" class="btn btn-header">
  8. <?php if(isset($link['icon']['ID'])): ?>
  9. <?php echo render_image($link['icon']['ID'], 'medium', ['class' => 'link-icon']); ?>
  1. * @throws \ErrorException
  2. */
  3. public function handleError($level, $message, $file = '', $line = 0, $context = [])
  4. {
  5. try {
  6. parent::handleError($level, $message, $file, $line, $context);
  7. } catch (Throwable $e) {
  8. if (! apply_filters('acorn/throw_error_exception', true, $e)) {
  9. return false;
  10. }
  1. <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
  2. </ul>
  3. </nav>
  4. <div class="links-wrapper">
  5. <?php $__currentLoopData = $header_settings['links']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $link): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
  6. <?php if(isset($link['cta']['url'])): ?>
  7. <a href="<?php echo e($link['cta']['url']); ?>" target="<?php echo e($link['cta']['target'] ?? '_self'); ?>" class="btn btn-header">
  8. <?php if(isset($link['icon']['ID'])): ?>
  9. <?php echo render_image($link['icon']['ID'], 'medium', ['class' => 'link-icon']); ?>
  1. $__data = $data;
  2. return (static function () use ($__path, $__data) {
  3. extract($__data, EXTR_SKIP);
  4. return require $__path;
  5. })();
  6. }
  7. throw new FileNotFoundException("File does not exist at path {$path}.");
  8. }
in /home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/filesystem/Filesystem.php :: {closure:Illuminate\Filesystem\Filesystem::getRequire():120} (line 124)
  1. return (static function () use ($__path, $__data) {
  2. extract($__data, EXTR_SKIP);
  3. return require $__path;
  4. })();
  5. }
  6. throw new FileNotFoundException("File does not exist at path {$path}.");
  7. }
  1. // We'll evaluate the contents of the view inside a try/catch block so we can
  2. // flush out any stray output that might get out before an error occurs or
  3. // an exception is thrown. This prevents any partial views from leaking.
  4. try {
  5. $this->files->getRequire($path, $data);
  6. } catch (Throwable $e) {
  7. $this->handleViewException($e, $obLevel);
  8. }
  9. return ltrim(ob_get_clean());
  1. // Once we have the path to the compiled file, we will evaluate the paths with
  2. // typical PHP just like any other templates. We also keep a stack of views
  3. // which have been rendered for right exception messages to be generated.
  4. try {
  5. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6. } catch (ViewException $e) {
  7. if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {
  8. throw $e;
  9. }
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. *
  2. * @throws \Throwable
  3. */
  4. public function __toString()
  5. {
  6. return $this->render();
  7. }
  8. }
  1. <body <?php body_class() ?>>
  2. <?php wp_body_open() ?>
  3. <div id="app">
  4. <?= view('sections.header') ?>
require_once('/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/header-shop.php') in /home/monsterbitemadwi/public_html/wp-includes/template.php (line 814)
  1. * @param array $args Additional arguments passed to the template.
  2. */
  3. do_action( 'wp_before_load_template', $_template_file, $load_once, $args );
  4. if ( $load_once ) {
  5. require_once $_template_file;
  6. } else {
  7. require $_template_file;
  8. }
  9. /**
  1. break;
  2. }
  3. }
  4. if ( $load && '' !== $located ) {
  5. load_template( $located, $load_once, $args );
  6. }
  7. return $located;
  8. }
  1. $templates[] = "header-{$name}.php";
  2. }
  3. $templates[] = 'header.php';
  4. if ( ! locate_template( $templates, true, true, $args ) ) {
  5. return false;
  6. }
  7. }
  8. /**
  1. if ( ! defined( 'ABSPATH' ) ) {
  2. exit; // Exit if accessed directly
  3. }
  4. get_header( 'shop' ); ?>
  5. <?php
  6. /**
  7. * woocommerce_before_main_content hook.
  8. *
  1. $__data = $data;
  2. return (static function () use ($__path, $__data) {
  3. extract($__data, EXTR_SKIP);
  4. return require $__path;
  5. })();
  6. }
  7. throw new FileNotFoundException("File does not exist at path {$path}.");
  8. }
in /home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/filesystem/Filesystem.php :: {closure:Illuminate\Filesystem\Filesystem::getRequire():120} (line 124)
  1. return (static function () use ($__path, $__data) {
  2. extract($__data, EXTR_SKIP);
  3. return require $__path;
  4. })();
  5. }
  6. throw new FileNotFoundException("File does not exist at path {$path}.");
  7. }
  1. // We'll evaluate the contents of the view inside a try/catch block so we can
  2. // flush out any stray output that might get out before an error occurs or
  3. // an exception is thrown. This prevents any partial views from leaking.
  4. try {
  5. $this->files->getRequire($path, $data);
  6. } catch (Throwable $e) {
  7. $this->handleViewException($e, $obLevel);
  8. }
  9. return ltrim(ob_get_clean());
  1. * @param array $data
  2. * @return string
  3. */
  4. public function get($path, array $data = [])
  5. {
  6. return $this->evaluatePath($path, $data);
  7. }
  8. /**
  9. * Get the evaluated contents of the view at the given path.
  10. *
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. <?php
  2. echo view(app('sage.view'), app('sage.data'))->render();
include('/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/index.php') in /home/monsterbitemadwi/public_html/wp-includes/template-loader.php (line 132)
  1. *
  2. * @param string $template The path of the template about to be included.
  3. */
  4. do_action( 'wp_before_include_template', $template );
  5. include $template;
  6. } elseif ( current_user_can( 'switch_themes' ) ) {
  7. $theme = wp_get_theme();
  8. if ( $theme->errors() ) {
  9. wp_die( $theme->errors() );
  10. }
require_once('/home/monsterbitemadwi/public_html/wp-includes/template-loader.php') in /home/monsterbitemadwi/public_html/wp-blog-header.php (line 19)
  1. // Set up the WordPress query.
  2. wp();
  3. // Load the theme template.
  4. require_once ABSPATH . WPINC . '/template-loader.php';
  5. }
require('/home/monsterbitemadwi/public_html/wp-blog-header.php') in /home/monsterbitemadwi/public_html/index.php (line 17)
  1. * @var bool
  2. */
  3. define( 'WP_USE_THEMES', true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ . '/wp-blog-header.php';

Stack Traces 2

[2/2] ViewException
Illuminate\View\ViewException:
Trying to access array offset on null (View: /home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/resources/views/sections/header.blade.php)

  at /home/monsterbitemadwi/public_html/wp-content/cache/acorn/framework/views/d6ebeb1e03e4b47e587d462905b57d85.php:158
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:504)
  at Illuminate\View\View->__toString()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/header-shop.php:14)
  at require_once('/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/header-shop.php')
     (/home/monsterbitemadwi/public_html/wp-includes/template.php:814)
  at load_template()
     (/home/monsterbitemadwi/public_html/wp-includes/template.php:749)
  at locate_template()
     (/home/monsterbitemadwi/public_html/wp-includes/general-template.php:48)
  at get_header()
     (/home/monsterbitemadwi/public_html/wp-content/plugins/woocommerce/templates/single-product.php:22)
  at require('/home/monsterbitemadwi/public_html/wp-content/plugins/woocommerce/templates/single-product.php')
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/Engines/PhpEngine.php:38)
  at Illuminate\View\Engines\PhpEngine->get()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/index.php:3)
  at include('/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/index.php')
     (/home/monsterbitemadwi/public_html/wp-includes/template-loader.php:132)
  at require_once('/home/monsterbitemadwi/public_html/wp-includes/template-loader.php')
     (/home/monsterbitemadwi/public_html/wp-blog-header.php:19)
  at require('/home/monsterbitemadwi/public_html/wp-blog-header.php')
     (/home/monsterbitemadwi/public_html/index.php:17)                
[1/2] ErrorException
ErrorException:
Trying to access array offset on null

  at /home/monsterbitemadwi/public_html/wp-content/cache/acorn/framework/views/d6ebeb1e03e4b47e587d462905b57d85.php:158
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:49)
  at Roots\Acorn\Bootstrap\HandleExceptions->handleError()
     (/home/monsterbitemadwi/public_html/wp-content/cache/acorn/framework/views/d6ebeb1e03e4b47e587d462905b57d85.php:158)
  at require('/home/monsterbitemadwi/public_html/wp-content/cache/acorn/framework/views/d6ebeb1e03e4b47e587d462905b57d85.php')
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:504)
  at Illuminate\View\View->__toString()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/header-shop.php:14)
  at require_once('/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/header-shop.php')
     (/home/monsterbitemadwi/public_html/wp-includes/template.php:814)
  at load_template()
     (/home/monsterbitemadwi/public_html/wp-includes/template.php:749)
  at locate_template()
     (/home/monsterbitemadwi/public_html/wp-includes/general-template.php:48)
  at get_header()
     (/home/monsterbitemadwi/public_html/wp-content/plugins/woocommerce/templates/single-product.php:22)
  at require('/home/monsterbitemadwi/public_html/wp-content/plugins/woocommerce/templates/single-product.php')
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::{closure:Illuminate\Filesystem\Filesystem::getRequire():120}()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/Engines/PhpEngine.php:38)
  at Illuminate\View\Engines\PhpEngine->get()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/index.php:3)
  at include('/home/monsterbitemadwi/public_html/wp-content/themes/monster-bite/index.php')
     (/home/monsterbitemadwi/public_html/wp-includes/template-loader.php:132)
  at require_once('/home/monsterbitemadwi/public_html/wp-includes/template-loader.php')
     (/home/monsterbitemadwi/public_html/wp-blog-header.php:19)
  at require('/home/monsterbitemadwi/public_html/wp-blog-header.php')
     (/home/monsterbitemadwi/public_html/index.php:17)