Symfony Exception

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, )) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php)

Exceptions 7

Illuminate\View\ ViewException

Show exception properties
Illuminate\View\ViewException {#3021
  #severity: E_ERROR
}
  1.         // If an exception occurs when attempting to run a query, we'll format the error
  2.         // message to include the bindings with SQL, which will make this exception a
  3.         // lot more helpful to the developer instead of just the database's errors.
  4.         catch (Exception $e) {
  5.             throw new QueryException(
  6.                 $query$this->prepareBindings($bindings), $e
  7.             );
  8.         }
  9.     }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // 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.     <div id="app">
  2.       <!--visual stuff starts here -->
  3.       <!-- by default, app('sage.view') is set to 'page.blade.php'  -->
  4.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5.     
  6.       <!--visual stuff ends here -->
  7.     </div>
include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php') in /home/forge/www.firstfriends.org/public/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php') in /home/forge/www.firstfriends.org/public/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/forge/www.firstfriends.org/public/wp-blog-header.php') in /home/forge/www.firstfriends.org/public/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

Illuminate\View\ ViewException

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, )) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php)

  1.         // If an exception occurs when attempting to run a query, we'll format the error
  2.         // message to include the bindings with SQL, which will make this exception a
  3.         // lot more helpful to the developer instead of just the database's errors.
  4.         catch (Exception $e) {
  5.             throw new QueryException(
  6.                 $query$this->prepareBindings($bindings), $e
  7.             );
  8.         }
  9.     }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // 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. <?php $__env->startSection('content'); ?>
  2.   <?php while(have_posts()): ?> <?php (the_post()); ?>
  3.   
  4.     <?php echo $__env->make('partials.content-page'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>    
  5.   
  6.   <?php endwhile; ?>
  7. <?php $__env->stopSection(); ?>
  8. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.     <div id="app">
  2.       <!--visual stuff starts here -->
  3.       <!-- by default, app('sage.view') is set to 'page.blade.php'  -->
  4.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5.     
  6.       <!--visual stuff ends here -->
  7.     </div>
include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php') in /home/forge/www.firstfriends.org/public/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php') in /home/forge/www.firstfriends.org/public/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/forge/www.firstfriends.org/public/wp-blog-header.php') in /home/forge/www.firstfriends.org/public/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

Illuminate\View\ ViewException

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, )) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php)

  1.         // If an exception occurs when attempting to run a query, we'll format the error
  2.         // message to include the bindings with SQL, which will make this exception a
  3.         // lot more helpful to the developer instead of just the database's errors.
  4.         catch (Exception $e) {
  5.             throw new QueryException(
  6.                 $query$this->prepareBindings($bindings), $e
  7.             );
  8.         }
  9.     }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // 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.                     $preview false,
  2.                     $post_id 0,
  3.                     $wp_block false,
  4.                     $context false
  5.                 ) {
  6.                     echo $this->render($block$content$preview$post_id$wp_block$context);
  7.                 },
  8.             ];
  9.             if ($this->example !== false) {
  10.                 $settings Arr::add($settings'example', [
  1.     // Setup postdata allowing get_field() to work.
  2.     acf_setup_meta$block['data'], $block['id'], true );
  3.     // Call render_callback.
  4.     if ( is_callable$block['render_callback'] ) ) {
  5.         call_user_func$block['render_callback'], $block$content$is_preview$post_id$wp_block$context );
  6.         // Or include template.
  7.     } elseif ( $block['render_template'] ) {
  8.         do_action'acf_block_render_template'$block$content$is_preview$post_id$wp_block$context );
  9.     }
  1.         } else {
  2.             echo acf_get_empty_block_form_html$attributes['name'] ); //phpcs:ignore -- escaped in function.
  3.         }
  4.     } else {
  5.         // Capture block render output.
  6.         acf_render_block$attributes$content$is_preview$post_id$wp_block$context );
  7.         if ( $is_preview && ! $is_ajax_render ) {
  8.             /**
  9.              * If we're in preloaded preview, we need to get the validation state for a preview too.
  10.              * Because the block render resets meta once it's finished to not pollute $post_id, we need to redo that process here.
  1.     if ( empty( $attributes['name'] ) && ! empty( $wp_block->name ) ) {
  2.         $attributes['name'] = $wp_block->name;
  3.     }
  4.     // Return rendered block HTML.
  5.     return acf_rendered_block$attributes$content$is_preview$post_id$wp_block );
  6. }
  7. /**
  8.  * Returns the rendered block HTML.
  9.  *
  1.             $global_post $post;
  2.             $parent      WP_Block_Supports::$block_to_render;
  3.             WP_Block_Supports::$block_to_render $this->parsed_block;
  4.             $block_content = (string) call_user_func$this->block_type->render_callback$this->attributes$block_content$this );
  5.             WP_Block_Supports::$block_to_render $parent;
  6.             $post $global_post;
  7.         }
  1.      */
  2.     $context apply_filters'render_block_context'$context$parsed_block$parent_block );
  3.     $block = new WP_Block$parsed_block$context );
  4.     return $block->render();
  5. }
  6. /**
  7.  * Parses blocks out of a content string.
  8.  *
  1. function do_blocks$content ) {
  2.     $blocks parse_blocks$content );
  3.     $output '';
  4.     foreach ( $blocks as $block ) {
  5.         $output .= render_block$block );
  6.     }
  7.     // If there are blocks in this content, we shouldn't run wpautop() on it later.
  8.     $priority has_filter'the_content''wpautop' );
  9.     if ( false !== $priority && doing_filter'the_content' ) && has_blocks$content ) ) {
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
  1.     }
  2.     // Pass the value to WP_Hook.
  3.     array_unshift$args$value );
  4.     $filtered $wp_filter$hook_name ]->apply_filters$value$args );
  5.     array_pop$wp_current_filter );
  6.     return $filtered;
  7. }
  1.      *
  2.      * @since 0.71
  3.      *
  4.      * @param string $content Content of the current post.
  5.      */
  6.     $content apply_filters'the_content'$content );
  7.     $content str_replace']]>'']]&gt;'$content );
  8.     echo $content;
  9. }
  10. /**
  1. <?php (the_content()); ?>
  2. <?php echo wp_link_pages(['echo' => 0'before' => '<nav class="page-nav"><p>' __('Pages:''sage'), 'after' => '</p></nav>']); ?>
  3. <?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/partials/content-page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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. <?php $__env->startSection('content'); ?>
  2.   <?php while(have_posts()): ?> <?php (the_post()); ?>
  3.   
  4.     <?php echo $__env->make('partials.content-page'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>    
  5.   
  6.   <?php endwhile; ?>
  7. <?php $__env->stopSection(); ?>
  8. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.     <div id="app">
  2.       <!--visual stuff starts here -->
  3.       <!-- by default, app('sage.view') is set to 'page.blade.php'  -->
  4.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5.     
  6.       <!--visual stuff ends here -->
  7.     </div>
include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php') in /home/forge/www.firstfriends.org/public/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php') in /home/forge/www.firstfriends.org/public/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/forge/www.firstfriends.org/public/wp-blog-header.php') in /home/forge/www.firstfriends.org/public/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

Illuminate\View\ ViewException

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, )) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php)

  1.         // If an exception occurs when attempting to run a query, we'll format the error
  2.         // message to include the bindings with SQL, which will make this exception a
  3.         // lot more helpful to the developer instead of just the database's errors.
  4.         catch (Exception $e) {
  5.             throw new QueryException(
  6.                 $query$this->prepareBindings($bindings), $e
  7.             );
  8.         }
  9.     }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // 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.             if ($view instanceof View) {
  2.                 return $view->with($data)->render();
  3.             } elseif ($view instanceof Htmlable) {
  4.                 return $view->toHtml();
  5.             } else {
  6.                 return $this->make($view$data)->render();
  7.             }
  8.         } finally {
  9.             $this->currentComponentData $previousComponentData;
  10.         }
  11.     }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\DynamicComponent::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['componentData' => $componentData]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9)): ?>
  9. <?php $component $__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9?>
  10. <?php unset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.                     $preview false,
  2.                     $post_id 0,
  3.                     $wp_block false,
  4.                     $context false
  5.                 ) {
  6.                     echo $this->render($block$content$preview$post_id$wp_block$context);
  7.                 },
  8.             ];
  9.             if ($this->example !== false) {
  10.                 $settings Arr::add($settings'example', [
  1.     // Setup postdata allowing get_field() to work.
  2.     acf_setup_meta$block['data'], $block['id'], true );
  3.     // Call render_callback.
  4.     if ( is_callable$block['render_callback'] ) ) {
  5.         call_user_func$block['render_callback'], $block$content$is_preview$post_id$wp_block$context );
  6.         // Or include template.
  7.     } elseif ( $block['render_template'] ) {
  8.         do_action'acf_block_render_template'$block$content$is_preview$post_id$wp_block$context );
  9.     }
  1.         } else {
  2.             echo acf_get_empty_block_form_html$attributes['name'] ); //phpcs:ignore -- escaped in function.
  3.         }
  4.     } else {
  5.         // Capture block render output.
  6.         acf_render_block$attributes$content$is_preview$post_id$wp_block$context );
  7.         if ( $is_preview && ! $is_ajax_render ) {
  8.             /**
  9.              * If we're in preloaded preview, we need to get the validation state for a preview too.
  10.              * Because the block render resets meta once it's finished to not pollute $post_id, we need to redo that process here.
  1.     if ( empty( $attributes['name'] ) && ! empty( $wp_block->name ) ) {
  2.         $attributes['name'] = $wp_block->name;
  3.     }
  4.     // Return rendered block HTML.
  5.     return acf_rendered_block$attributes$content$is_preview$post_id$wp_block );
  6. }
  7. /**
  8.  * Returns the rendered block HTML.
  9.  *
  1.             $global_post $post;
  2.             $parent      WP_Block_Supports::$block_to_render;
  3.             WP_Block_Supports::$block_to_render $this->parsed_block;
  4.             $block_content = (string) call_user_func$this->block_type->render_callback$this->attributes$block_content$this );
  5.             WP_Block_Supports::$block_to_render $parent;
  6.             $post $global_post;
  7.         }
  1.      */
  2.     $context apply_filters'render_block_context'$context$parsed_block$parent_block );
  3.     $block = new WP_Block$parsed_block$context );
  4.     return $block->render();
  5. }
  6. /**
  7.  * Parses blocks out of a content string.
  8.  *
  1. function do_blocks$content ) {
  2.     $blocks parse_blocks$content );
  3.     $output '';
  4.     foreach ( $blocks as $block ) {
  5.         $output .= render_block$block );
  6.     }
  7.     // If there are blocks in this content, we shouldn't run wpautop() on it later.
  8.     $priority has_filter'the_content''wpautop' );
  9.     if ( false !== $priority && doing_filter'the_content' ) && has_blocks$content ) ) {
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
  1.     }
  2.     // Pass the value to WP_Hook.
  3.     array_unshift$args$value );
  4.     $filtered $wp_filter$hook_name ]->apply_filters$value$args );
  5.     array_pop$wp_current_filter );
  6.     return $filtered;
  7. }
  1.      *
  2.      * @since 0.71
  3.      *
  4.      * @param string $content Content of the current post.
  5.      */
  6.     $content apply_filters'the_content'$content );
  7.     $content str_replace']]>'']]&gt;'$content );
  8.     echo $content;
  9. }
  10. /**
  1. <?php (the_content()); ?>
  2. <?php echo wp_link_pages(['echo' => 0'before' => '<nav class="page-nav"><p>' __('Pages:''sage'), 'after' => '</p></nav>']); ?>
  3. <?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/partials/content-page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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. <?php $__env->startSection('content'); ?>
  2.   <?php while(have_posts()): ?> <?php (the_post()); ?>
  3.   
  4.     <?php echo $__env->make('partials.content-page'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>    
  5.   
  6.   <?php endwhile; ?>
  7. <?php $__env->stopSection(); ?>
  8. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.     <div id="app">
  2.       <!--visual stuff starts here -->
  3.       <!-- by default, app('sage.view') is set to 'page.blade.php'  -->
  4.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5.     
  6.       <!--visual stuff ends here -->
  7.     </div>
include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php') in /home/forge/www.firstfriends.org/public/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php') in /home/forge/www.firstfriends.org/public/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/forge/www.firstfriends.org/public/wp-blog-header.php') in /home/forge/www.firstfriends.org/public/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

Illuminate\View\ ViewException

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, )) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php)

  1.         // If an exception occurs when attempting to run a query, we'll format the error
  2.         // message to include the bindings with SQL, which will make this exception a
  3.         // lot more helpful to the developer instead of just the database's errors.
  4.         catch (Exception $e) {
  5.             throw new QueryException(
  6.                 $query$this->prepareBindings($bindings), $e
  7.             );
  8.         }
  9.     }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // 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.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php endif; ?>
  2. <?php $component->withAttributes(['attributes' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($attributes)]); ?>
  3. <?php echo e($slot ?? ""); ?>
  4.  <?php echo $__env->renderComponent(); ?>
  5. <?php endif; ?>
  6. <?php if (isset($__componentOriginal263608f1e2531939a52c9d677d705bf42b3dc606)): ?>
  7. <?php $component $__componentOriginal263608f1e2531939a52c9d677d705bf42b3dc606?>
  8. <?php unset($__componentOriginal263608f1e2531939a52c9d677d705bf42b3dc606); ?>
  9. <?php endif; ?><?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/e266b35747d8727303de02448fa664a9928cc0b9.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.             if ($view instanceof View) {
  2.                 return $view->with($data)->render();
  3.             } elseif ($view instanceof Htmlable) {
  4.                 return $view->toHtml();
  5.             } else {
  6.                 return $this->make($view$data)->render();
  7.             }
  8.         } finally {
  9.             $this->currentComponentData $previousComponentData;
  10.         }
  11.     }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\DynamicComponent::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['componentData' => $componentData]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9)): ?>
  9. <?php $component $__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9?>
  10. <?php unset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.                     $preview false,
  2.                     $post_id 0,
  3.                     $wp_block false,
  4.                     $context false
  5.                 ) {
  6.                     echo $this->render($block$content$preview$post_id$wp_block$context);
  7.                 },
  8.             ];
  9.             if ($this->example !== false) {
  10.                 $settings Arr::add($settings'example', [
  1.     // Setup postdata allowing get_field() to work.
  2.     acf_setup_meta$block['data'], $block['id'], true );
  3.     // Call render_callback.
  4.     if ( is_callable$block['render_callback'] ) ) {
  5.         call_user_func$block['render_callback'], $block$content$is_preview$post_id$wp_block$context );
  6.         // Or include template.
  7.     } elseif ( $block['render_template'] ) {
  8.         do_action'acf_block_render_template'$block$content$is_preview$post_id$wp_block$context );
  9.     }
  1.         } else {
  2.             echo acf_get_empty_block_form_html$attributes['name'] ); //phpcs:ignore -- escaped in function.
  3.         }
  4.     } else {
  5.         // Capture block render output.
  6.         acf_render_block$attributes$content$is_preview$post_id$wp_block$context );
  7.         if ( $is_preview && ! $is_ajax_render ) {
  8.             /**
  9.              * If we're in preloaded preview, we need to get the validation state for a preview too.
  10.              * Because the block render resets meta once it's finished to not pollute $post_id, we need to redo that process here.
  1.     if ( empty( $attributes['name'] ) && ! empty( $wp_block->name ) ) {
  2.         $attributes['name'] = $wp_block->name;
  3.     }
  4.     // Return rendered block HTML.
  5.     return acf_rendered_block$attributes$content$is_preview$post_id$wp_block );
  6. }
  7. /**
  8.  * Returns the rendered block HTML.
  9.  *
  1.             $global_post $post;
  2.             $parent      WP_Block_Supports::$block_to_render;
  3.             WP_Block_Supports::$block_to_render $this->parsed_block;
  4.             $block_content = (string) call_user_func$this->block_type->render_callback$this->attributes$block_content$this );
  5.             WP_Block_Supports::$block_to_render $parent;
  6.             $post $global_post;
  7.         }
  1.      */
  2.     $context apply_filters'render_block_context'$context$parsed_block$parent_block );
  3.     $block = new WP_Block$parsed_block$context );
  4.     return $block->render();
  5. }
  6. /**
  7.  * Parses blocks out of a content string.
  8.  *
  1. function do_blocks$content ) {
  2.     $blocks parse_blocks$content );
  3.     $output '';
  4.     foreach ( $blocks as $block ) {
  5.         $output .= render_block$block );
  6.     }
  7.     // If there are blocks in this content, we shouldn't run wpautop() on it later.
  8.     $priority has_filter'the_content''wpautop' );
  9.     if ( false !== $priority && doing_filter'the_content' ) && has_blocks$content ) ) {
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
  1.     }
  2.     // Pass the value to WP_Hook.
  3.     array_unshift$args$value );
  4.     $filtered $wp_filter$hook_name ]->apply_filters$value$args );
  5.     array_pop$wp_current_filter );
  6.     return $filtered;
  7. }
  1.      *
  2.      * @since 0.71
  3.      *
  4.      * @param string $content Content of the current post.
  5.      */
  6.     $content apply_filters'the_content'$content );
  7.     $content str_replace']]>'']]&gt;'$content );
  8.     echo $content;
  9. }
  10. /**
  1. <?php (the_content()); ?>
  2. <?php echo wp_link_pages(['echo' => 0'before' => '<nav class="page-nav"><p>' __('Pages:''sage'), 'after' => '</p></nav>']); ?>
  3. <?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/partials/content-page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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. <?php $__env->startSection('content'); ?>
  2.   <?php while(have_posts()): ?> <?php (the_post()); ?>
  3.   
  4.     <?php echo $__env->make('partials.content-page'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>    
  5.   
  6.   <?php endwhile; ?>
  7. <?php $__env->stopSection(); ?>
  8. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.     <div id="app">
  2.       <!--visual stuff starts here -->
  3.       <!-- by default, app('sage.view') is set to 'page.blade.php'  -->
  4.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5.     
  6.       <!--visual stuff ends here -->
  7.     </div>
include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php') in /home/forge/www.firstfriends.org/public/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php') in /home/forge/www.firstfriends.org/public/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/forge/www.firstfriends.org/public/wp-blog-header.php') in /home/forge/www.firstfriends.org/public/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

Illuminate\Database\ QueryException

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, ))

  1.         // If an exception occurs when attempting to run a query, we'll format the error
  2.         // message to include the bindings with SQL, which will make this exception a
  3.         // lot more helpful to the developer instead of just the database's errors.
  4.         catch (Exception $e) {
  5.             throw new QueryException(
  6.                 $query$this->prepareBindings($bindings), $e
  7.             );
  8.         }
  9.     }
  1.         // Here we will run this query. If an exception occurs we'll determine if it was
  2.         // caused by a connection that has been lost. If that is the cause, we'll try
  3.         // to re-establish connection and re-run the query with a fresh connection.
  4.         try {
  5.             $result $this->runQueryCallback($query$bindings$callback);
  6.         } catch (QueryException $e) {
  7.             $result $this->handleQueryException(
  8.                 $e$query$bindings$callback
  9.             );
  10.         }
  1.      * @param  bool  $useReadPdo
  2.      * @return array
  3.      */
  4.     public function select($query$bindings = [], $useReadPdo true)
  5.     {
  6.         return $this->run($query$bindings, function ($query$bindings) use ($useReadPdo) {
  7.             if ($this->pretending()) {
  8.                 return [];
  9.             }
  10.             // For select statements, we'll simply execute the query and return an array
  1.      *
  2.      * @return array
  3.      */
  4.     protected function runSelect()
  5.     {
  6.         return $this->connection->select(
  7.             $this->toSql(), $this->getBindings(), ! $this->useWritePdo
  8.         );
  9.     }
  10.     /**
  1.      * @return \Illuminate\Support\Collection
  2.      */
  3.     public function get($columns = ['*'])
  4.     {
  5.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
  6.             return $this->processor->processSelect($this$this->runSelect());
  7.         }));
  8.     }
  9.     /**
  10.      * Run the query as a "select" statement against the connection.
  1.         if (is_null($original)) {
  2.             $this->columns $columns;
  3.         }
  4.         $result $callback();
  5.         $this->columns $original;
  6.         return $result;
  7.     }
  1.      * @param  array|string  $columns
  2.      * @return \Illuminate\Support\Collection
  3.      */
  4.     public function get($columns = ['*'])
  5.     {
  6.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
  7.             return $this->processor->processSelect($this$this->runSelect());
  8.         }));
  9.     }
  10.     /**
  1.      * @return \Illuminate\Database\Eloquent\Model[]|static[]
  2.      */
  3.     public function getModels($columns = ['*'])
  4.     {
  5.         return $this->model->hydrate(
  6.             $this->query->get($columns)->all()
  7.         )->all();
  8.     }
  9.     /**
  10.      * Eager load the relationships for the models.
  1.         $builder $this->applyScopes();
  2.         // If we actually found models we will also eager load any relationships that
  3.         // have been specified as needing to be eager loaded, which will solve the
  4.         // n+1 query issue for the developers to avoid running a lot of queries.
  5.         if (count($models $builder->getModels($columns)) > 0) {
  6.             $models $builder->eagerLoadRelations($models);
  7.         }
  8.         return $builder->getModel()->newCollection($models);
  9.     }
  1.     }
  2.     public function setStaffData($staff_ids = []){
  3.         if ( !empty($staff_ids) ){
  4.             //get the staff members where in ID staff_ids ordered by those IDs
  5.             $staff Staff::whereIn('ID'$staff_ids)->orderByRaw('FIELD(ID, ' implode(','$staff_ids) . ')')->get();
  6.             // $staff = Staff::whereIn('ID', $staff_ids)->get();
  7.         } else {
  8.             $staff Staff::all()->sortBy('menu_order');
  9.         }
  1.    )
  2.     {
  3.         parent::__construct();
  4.     
  5.         $this->setStaffData($staffidlist);
  6.        
  7.     }
  8.     public function setStaffData($staff_ids = []){
  9.         if ( !empty($staff_ids) ){
StaffGrid->__construct()
  1.             throw $e;
  2.         }
  3.         array_pop($this->buildStack);
  4.         return $reflector->newInstanceArgs($instances);
  5.     }
  6.     /**
  7.      * Resolve all of the dependencies from the ReflectionParameters.
  8.      *
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.         if (empty(array_diff($parameters$dataKeys))) {
  2.             return new static(...array_intersect_key($dataarray_flip($parameters)));
  3.         }
  4.         return Container::getInstance()->make(static::class, $data);
  5.     }
  6.     /**
  7.      * Extract the constructor parameters for the component.
  8.      *
  1.             <div class="h-[4px] bg-primary-600 w-3/5 my-2"></div>   
  2.         </div>
  3.     <?php endif; ?>
  4.     
  5.     <?php if (isset($component)) { $__componentOriginal93e3745b4d4f153ed4e0e86d0585df0846c8c6d1 $component; } ?>
  6. <?php $component App\View\Components\StaffGrid::resolve(['staffidlist' => $getStaffIDs()] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
  7. <?php $component->withName('staff-grid'); ?>
  8. <?php if ($component->shouldRender()): ?>
  9. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  10. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\StaffGrid::class))->getConstructor()): ?>
  11. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php endif; ?>
  2. <?php $component->withAttributes(['attributes' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($attributes)]); ?>
  3. <?php echo e($slot ?? ""); ?>
  4.  <?php echo $__env->renderComponent(); ?>
  5. <?php endif; ?>
  6. <?php if (isset($__componentOriginal263608f1e2531939a52c9d677d705bf42b3dc606)): ?>
  7. <?php $component $__componentOriginal263608f1e2531939a52c9d677d705bf42b3dc606?>
  8. <?php unset($__componentOriginal263608f1e2531939a52c9d677d705bf42b3dc606); ?>
  9. <?php endif; ?><?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/e266b35747d8727303de02448fa664a9928cc0b9.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.             if ($view instanceof View) {
  2.                 return $view->with($data)->render();
  3.             } elseif ($view instanceof Htmlable) {
  4.                 return $view->toHtml();
  5.             } else {
  6.                 return $this->make($view$data)->render();
  7.             }
  8.         } finally {
  9.             $this->currentComponentData $previousComponentData;
  10.         }
  11.     }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\DynamicComponent::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['componentData' => $componentData]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9)): ?>
  9. <?php $component $__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9?>
  10. <?php unset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.                     $preview false,
  2.                     $post_id 0,
  3.                     $wp_block false,
  4.                     $context false
  5.                 ) {
  6.                     echo $this->render($block$content$preview$post_id$wp_block$context);
  7.                 },
  8.             ];
  9.             if ($this->example !== false) {
  10.                 $settings Arr::add($settings'example', [
  1.     // Setup postdata allowing get_field() to work.
  2.     acf_setup_meta$block['data'], $block['id'], true );
  3.     // Call render_callback.
  4.     if ( is_callable$block['render_callback'] ) ) {
  5.         call_user_func$block['render_callback'], $block$content$is_preview$post_id$wp_block$context );
  6.         // Or include template.
  7.     } elseif ( $block['render_template'] ) {
  8.         do_action'acf_block_render_template'$block$content$is_preview$post_id$wp_block$context );
  9.     }
  1.         } else {
  2.             echo acf_get_empty_block_form_html$attributes['name'] ); //phpcs:ignore -- escaped in function.
  3.         }
  4.     } else {
  5.         // Capture block render output.
  6.         acf_render_block$attributes$content$is_preview$post_id$wp_block$context );
  7.         if ( $is_preview && ! $is_ajax_render ) {
  8.             /**
  9.              * If we're in preloaded preview, we need to get the validation state for a preview too.
  10.              * Because the block render resets meta once it's finished to not pollute $post_id, we need to redo that process here.
  1.     if ( empty( $attributes['name'] ) && ! empty( $wp_block->name ) ) {
  2.         $attributes['name'] = $wp_block->name;
  3.     }
  4.     // Return rendered block HTML.
  5.     return acf_rendered_block$attributes$content$is_preview$post_id$wp_block );
  6. }
  7. /**
  8.  * Returns the rendered block HTML.
  9.  *
  1.             $global_post $post;
  2.             $parent      WP_Block_Supports::$block_to_render;
  3.             WP_Block_Supports::$block_to_render $this->parsed_block;
  4.             $block_content = (string) call_user_func$this->block_type->render_callback$this->attributes$block_content$this );
  5.             WP_Block_Supports::$block_to_render $parent;
  6.             $post $global_post;
  7.         }
  1.      */
  2.     $context apply_filters'render_block_context'$context$parsed_block$parent_block );
  3.     $block = new WP_Block$parsed_block$context );
  4.     return $block->render();
  5. }
  6. /**
  7.  * Parses blocks out of a content string.
  8.  *
  1. function do_blocks$content ) {
  2.     $blocks parse_blocks$content );
  3.     $output '';
  4.     foreach ( $blocks as $block ) {
  5.         $output .= render_block$block );
  6.     }
  7.     // If there are blocks in this content, we shouldn't run wpautop() on it later.
  8.     $priority has_filter'the_content''wpautop' );
  9.     if ( false !== $priority && doing_filter'the_content' ) && has_blocks$content ) ) {
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
  1.     }
  2.     // Pass the value to WP_Hook.
  3.     array_unshift$args$value );
  4.     $filtered $wp_filter$hook_name ]->apply_filters$value$args );
  5.     array_pop$wp_current_filter );
  6.     return $filtered;
  7. }
  1.      *
  2.      * @since 0.71
  3.      *
  4.      * @param string $content Content of the current post.
  5.      */
  6.     $content apply_filters'the_content'$content );
  7.     $content str_replace']]>'']]&gt;'$content );
  8.     echo $content;
  9. }
  10. /**
  1. <?php (the_content()); ?>
  2. <?php echo wp_link_pages(['echo' => 0'before' => '<nav class="page-nav"><p>' __('Pages:''sage'), 'after' => '</p></nav>']); ?>
  3. <?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/partials/content-page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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. <?php $__env->startSection('content'); ?>
  2.   <?php while(have_posts()): ?> <?php (the_post()); ?>
  3.   
  4.     <?php echo $__env->make('partials.content-page'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>    
  5.   
  6.   <?php endwhile; ?>
  7. <?php $__env->stopSection(); ?>
  8. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.     <div id="app">
  2.       <!--visual stuff starts here -->
  3.       <!-- by default, app('sage.view') is set to 'page.blade.php'  -->
  4.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5.     
  6.       <!--visual stuff ends here -->
  7.     </div>
include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php') in /home/forge/www.firstfriends.org/public/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php') in /home/forge/www.firstfriends.org/public/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/forge/www.firstfriends.org/public/wp-blog-header.php') in /home/forge/www.firstfriends.org/public/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';

PDOException

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1

  1.             // For select statements, we'll simply execute the query and return an array
  2.             // of the database result set. Each element in the array will be a single
  3.             // row from the database table, and will either be an array or objects.
  4.             $statement $this->prepared(
  5.                 $this->getPdoForSelect($useReadPdo)->prepare($query)
  6.             );
  7.             $this->bindValues($statement$this->prepareBindings($bindings));
  8.             $statement->execute();
  1.             // For select statements, we'll simply execute the query and return an array
  2.             // of the database result set. Each element in the array will be a single
  3.             // row from the database table, and will either be an array or objects.
  4.             $statement $this->prepared(
  5.                 $this->getPdoForSelect($useReadPdo)->prepare($query)
  6.             );
  7.             $this->bindValues($statement$this->prepareBindings($bindings));
  8.             $statement->execute();
  1.     {
  2.         // To execute the statement, we'll simply call the callback, which will actually
  3.         // run the SQL against the PDO connection. Then we can calculate the time it
  4.         // took to execute and log the query SQL, bindings and time in our memory.
  5.         try {
  6.             return $callback($query$bindings);
  7.         }
  8.         // If an exception occurs when attempting to run a query, we'll format the error
  9.         // message to include the bindings with SQL, which will make this exception a
  10.         // lot more helpful to the developer instead of just the database's errors.
  1.         // Here we will run this query. If an exception occurs we'll determine if it was
  2.         // caused by a connection that has been lost. If that is the cause, we'll try
  3.         // to re-establish connection and re-run the query with a fresh connection.
  4.         try {
  5.             $result $this->runQueryCallback($query$bindings$callback);
  6.         } catch (QueryException $e) {
  7.             $result $this->handleQueryException(
  8.                 $e$query$bindings$callback
  9.             );
  10.         }
  1.      * @param  bool  $useReadPdo
  2.      * @return array
  3.      */
  4.     public function select($query$bindings = [], $useReadPdo true)
  5.     {
  6.         return $this->run($query$bindings, function ($query$bindings) use ($useReadPdo) {
  7.             if ($this->pretending()) {
  8.                 return [];
  9.             }
  10.             // For select statements, we'll simply execute the query and return an array
  1.      *
  2.      * @return array
  3.      */
  4.     protected function runSelect()
  5.     {
  6.         return $this->connection->select(
  7.             $this->toSql(), $this->getBindings(), ! $this->useWritePdo
  8.         );
  9.     }
  10.     /**
  1.      * @return \Illuminate\Support\Collection
  2.      */
  3.     public function get($columns = ['*'])
  4.     {
  5.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
  6.             return $this->processor->processSelect($this$this->runSelect());
  7.         }));
  8.     }
  9.     /**
  10.      * Run the query as a "select" statement against the connection.
  1.         if (is_null($original)) {
  2.             $this->columns $columns;
  3.         }
  4.         $result $callback();
  5.         $this->columns $original;
  6.         return $result;
  7.     }
  1.      * @param  array|string  $columns
  2.      * @return \Illuminate\Support\Collection
  3.      */
  4.     public function get($columns = ['*'])
  5.     {
  6.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
  7.             return $this->processor->processSelect($this$this->runSelect());
  8.         }));
  9.     }
  10.     /**
  1.      * @return \Illuminate\Database\Eloquent\Model[]|static[]
  2.      */
  3.     public function getModels($columns = ['*'])
  4.     {
  5.         return $this->model->hydrate(
  6.             $this->query->get($columns)->all()
  7.         )->all();
  8.     }
  9.     /**
  10.      * Eager load the relationships for the models.
  1.         $builder $this->applyScopes();
  2.         // If we actually found models we will also eager load any relationships that
  3.         // have been specified as needing to be eager loaded, which will solve the
  4.         // n+1 query issue for the developers to avoid running a lot of queries.
  5.         if (count($models $builder->getModels($columns)) > 0) {
  6.             $models $builder->eagerLoadRelations($models);
  7.         }
  8.         return $builder->getModel()->newCollection($models);
  9.     }
  1.     }
  2.     public function setStaffData($staff_ids = []){
  3.         if ( !empty($staff_ids) ){
  4.             //get the staff members where in ID staff_ids ordered by those IDs
  5.             $staff Staff::whereIn('ID'$staff_ids)->orderByRaw('FIELD(ID, ' implode(','$staff_ids) . ')')->get();
  6.             // $staff = Staff::whereIn('ID', $staff_ids)->get();
  7.         } else {
  8.             $staff Staff::all()->sortBy('menu_order');
  9.         }
  1.    )
  2.     {
  3.         parent::__construct();
  4.     
  5.         $this->setStaffData($staffidlist);
  6.        
  7.     }
  8.     public function setStaffData($staff_ids = []){
  9.         if ( !empty($staff_ids) ){
StaffGrid->__construct()
  1.             throw $e;
  2.         }
  3.         array_pop($this->buildStack);
  4.         return $reflector->newInstanceArgs($instances);
  5.     }
  6.     /**
  7.      * Resolve all of the dependencies from the ReflectionParameters.
  8.      *
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.         if (empty(array_diff($parameters$dataKeys))) {
  2.             return new static(...array_intersect_key($dataarray_flip($parameters)));
  3.         }
  4.         return Container::getInstance()->make(static::class, $data);
  5.     }
  6.     /**
  7.      * Extract the constructor parameters for the component.
  8.      *
  1.             <div class="h-[4px] bg-primary-600 w-3/5 my-2"></div>   
  2.         </div>
  3.     <?php endif; ?>
  4.     
  5.     <?php if (isset($component)) { $__componentOriginal93e3745b4d4f153ed4e0e86d0585df0846c8c6d1 $component; } ?>
  6. <?php $component App\View\Components\StaffGrid::resolve(['staffidlist' => $getStaffIDs()] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
  7. <?php $component->withName('staff-grid'); ?>
  8. <?php if ($component->shouldRender()): ?>
  9. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  10. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\StaffGrid::class))->getConstructor()): ?>
  11. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.         try {
  2.             $view value($view$data);
  3.             if ($view instanceof View) {
  4.                 return $view->with($data)->render();
  5.             } elseif ($view instanceof Htmlable) {
  6.                 return $view->toHtml();
  7.             } else {
  8.                 return $this->make($view$data)->render();
  9.             }
  1. <?php endif; ?>
  2. <?php $component->withAttributes(['attributes' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($attributes)]); ?>
  3. <?php echo e($slot ?? ""); ?>
  4.  <?php echo $__env->renderComponent(); ?>
  5. <?php endif; ?>
  6. <?php if (isset($__componentOriginal263608f1e2531939a52c9d677d705bf42b3dc606)): ?>
  7. <?php $component $__componentOriginal263608f1e2531939a52c9d677d705bf42b3dc606?>
  8. <?php unset($__componentOriginal263608f1e2531939a52c9d677d705bf42b3dc606); ?>
  9. <?php endif; ?><?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/e266b35747d8727303de02448fa664a9928cc0b9.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.             if ($view instanceof View) {
  2.                 return $view->with($data)->render();
  3.             } elseif ($view instanceof Htmlable) {
  4.                 return $view->toHtml();
  5.             } else {
  6.                 return $this->make($view$data)->render();
  7.             }
  8.         } finally {
  9.             $this->currentComponentData $previousComponentData;
  10.         }
  11.     }
  1. <?php $__env->startComponent($component->resolveView(), $component->data()); ?>
  2. <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\DynamicComponent::class))->getConstructor()): ?>
  3. <?php $attributes $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
  4. <?php endif; ?>
  5. <?php $component->withAttributes(['componentData' => $componentData]); ?>
  6. <?php echo $__env->renderComponent(); ?>
  7. <?php endif; ?>
  8. <?php if (isset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9)): ?>
  9. <?php $component $__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9?>
  10. <?php unset($__componentOriginal3bf0a20793be3eca9a779778cf74145887b021b9); ?>
  11. <?php endif; ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.                     $preview false,
  2.                     $post_id 0,
  3.                     $wp_block false,
  4.                     $context false
  5.                 ) {
  6.                     echo $this->render($block$content$preview$post_id$wp_block$context);
  7.                 },
  8.             ];
  9.             if ($this->example !== false) {
  10.                 $settings Arr::add($settings'example', [
  1.     // Setup postdata allowing get_field() to work.
  2.     acf_setup_meta$block['data'], $block['id'], true );
  3.     // Call render_callback.
  4.     if ( is_callable$block['render_callback'] ) ) {
  5.         call_user_func$block['render_callback'], $block$content$is_preview$post_id$wp_block$context );
  6.         // Or include template.
  7.     } elseif ( $block['render_template'] ) {
  8.         do_action'acf_block_render_template'$block$content$is_preview$post_id$wp_block$context );
  9.     }
  1.         } else {
  2.             echo acf_get_empty_block_form_html$attributes['name'] ); //phpcs:ignore -- escaped in function.
  3.         }
  4.     } else {
  5.         // Capture block render output.
  6.         acf_render_block$attributes$content$is_preview$post_id$wp_block$context );
  7.         if ( $is_preview && ! $is_ajax_render ) {
  8.             /**
  9.              * If we're in preloaded preview, we need to get the validation state for a preview too.
  10.              * Because the block render resets meta once it's finished to not pollute $post_id, we need to redo that process here.
  1.     if ( empty( $attributes['name'] ) && ! empty( $wp_block->name ) ) {
  2.         $attributes['name'] = $wp_block->name;
  3.     }
  4.     // Return rendered block HTML.
  5.     return acf_rendered_block$attributes$content$is_preview$post_id$wp_block );
  6. }
  7. /**
  8.  * Returns the rendered block HTML.
  9.  *
  1.             $global_post $post;
  2.             $parent      WP_Block_Supports::$block_to_render;
  3.             WP_Block_Supports::$block_to_render $this->parsed_block;
  4.             $block_content = (string) call_user_func$this->block_type->render_callback$this->attributes$block_content$this );
  5.             WP_Block_Supports::$block_to_render $parent;
  6.             $post $global_post;
  7.         }
  1.      */
  2.     $context apply_filters'render_block_context'$context$parsed_block$parent_block );
  3.     $block = new WP_Block$parsed_block$context );
  4.     return $block->render();
  5. }
  6. /**
  7.  * Parses blocks out of a content string.
  8.  *
  1. function do_blocks$content ) {
  2.     $blocks parse_blocks$content );
  3.     $output '';
  4.     foreach ( $blocks as $block ) {
  5.         $output .= render_block$block );
  6.     }
  7.     // If there are blocks in this content, we shouldn't run wpautop() on it later.
  8.     $priority has_filter'the_content''wpautop' );
  9.     if ( false !== $priority && doing_filter'the_content' ) && has_blocks$content ) ) {
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
  1.     }
  2.     // Pass the value to WP_Hook.
  3.     array_unshift$args$value );
  4.     $filtered $wp_filter$hook_name ]->apply_filters$value$args );
  5.     array_pop$wp_current_filter );
  6.     return $filtered;
  7. }
  1.      *
  2.      * @since 0.71
  3.      *
  4.      * @param string $content Content of the current post.
  5.      */
  6.     $content apply_filters'the_content'$content );
  7.     $content str_replace']]>'']]&gt;'$content );
  8.     echo $content;
  9. }
  10. /**
  1. <?php (the_content()); ?>
  2. <?php echo wp_link_pages(['echo' => 0'before' => '<nav class="page-nav"><p>' __('Pages:''sage'), 'after' => '</p></nav>']); ?>
  3. <?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/partials/content-page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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. <?php $__env->startSection('content'); ?>
  2.   <?php while(have_posts()): ?> <?php (the_post()); ?>
  3.   
  4.     <?php echo $__env->make('partials.content-page'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>    
  5.   
  6.   <?php endwhile; ?>
  7. <?php $__env->stopSection(); ?>
  8. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // 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.     <div id="app">
  2.       <!--visual stuff starts here -->
  3.       <!-- by default, app('sage.view') is set to 'page.blade.php'  -->
  4.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  5.     
  6.       <!--visual stuff ends here -->
  7.     </div>
include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php') in /home/forge/www.firstfriends.org/public/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php') in /home/forge/www.firstfriends.org/public/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/forge/www.firstfriends.org/public/wp-blog-header.php') in /home/forge/www.firstfriends.org/public/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 7

[7/7] ViewException
Illuminate\View\ViewException:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, )) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php)

  at /home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:760
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php:54)
  at include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php')
     (/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php:106)
  at require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php')
     (/home/forge/www.firstfriends.org/public/wp-blog-header.php:19)
  at require('/home/forge/www.firstfriends.org/public/wp-blog-header.php')
     (/home/forge/www.firstfriends.org/public/index.php:17)                
[6/7] ViewException
Illuminate\View\ViewException:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, )) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php)

  at /home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:760
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php:5)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php:54)
  at include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php')
     (/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php:106)
  at require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php')
     (/home/forge/www.firstfriends.org/public/wp-blog-header.php:19)
  at require('/home/forge/www.firstfriends.org/public/wp-blog-header.php')
     (/home/forge/www.firstfriends.org/public/index.php:17)                
[5/7] ViewException
Illuminate\View\ViewException:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, )) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php)

  at /home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:760
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:492)
  at Illuminate\View\View->__toString()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/vendor/log1x/acf-composer/src/Block.php:293)
  at Log1x\AcfComposer\Block->Log1x\AcfComposer\{closure}()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:708)
  at acf_render_block()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:610)
  at acf_rendered_block()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:533)
  at acf_render_block_callback()
     (/home/forge/www.firstfriends.org/public/wp-includes/class-wp-block.php:519)
  at WP_Block->render()
     (/home/forge/www.firstfriends.org/public/wp-includes/blocks.php:2061)
  at render_block()
     (/home/forge/www.firstfriends.org/public/wp-includes/blocks.php:2113)
  at do_blocks()
     (/home/forge/www.firstfriends.org/public/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters()
     (/home/forge/www.firstfriends.org/public/wp-includes/plugin.php:205)
  at apply_filters()
     (/home/forge/www.firstfriends.org/public/wp-includes/post-template.php:256)
  at the_content()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/0f4704e3e75b62a95967c3872af35080ff801e13.php:1)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/0f4704e3e75b62a95967c3872af35080ff801e13.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php:5)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php:54)
  at include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php')
     (/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php:106)
  at require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php')
     (/home/forge/www.firstfriends.org/public/wp-blog-header.php:19)
  at require('/home/forge/www.firstfriends.org/public/wp-blog-header.php')
     (/home/forge/www.firstfriends.org/public/index.php:17)                
[4/7] ViewException
Illuminate\View\ViewException:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, )) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php)

  at /home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:760
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Concerns/ManagesComponents.php:104)
  at Illuminate\View\Factory->renderComponent()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/35695d88ec4f7fadf3e56c81ebc967a0e9707608.php:22)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/35695d88ec4f7fadf3e56c81ebc967a0e9707608.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:492)
  at Illuminate\View\View->__toString()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/vendor/log1x/acf-composer/src/Block.php:293)
  at Log1x\AcfComposer\Block->Log1x\AcfComposer\{closure}()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:708)
  at acf_render_block()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:610)
  at acf_rendered_block()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:533)
  at acf_render_block_callback()
     (/home/forge/www.firstfriends.org/public/wp-includes/class-wp-block.php:519)
  at WP_Block->render()
     (/home/forge/www.firstfriends.org/public/wp-includes/blocks.php:2061)
  at render_block()
     (/home/forge/www.firstfriends.org/public/wp-includes/blocks.php:2113)
  at do_blocks()
     (/home/forge/www.firstfriends.org/public/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters()
     (/home/forge/www.firstfriends.org/public/wp-includes/plugin.php:205)
  at apply_filters()
     (/home/forge/www.firstfriends.org/public/wp-includes/post-template.php:256)
  at the_content()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/0f4704e3e75b62a95967c3872af35080ff801e13.php:1)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/0f4704e3e75b62a95967c3872af35080ff801e13.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php:5)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php:54)
  at include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php')
     (/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php:106)
  at require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php')
     (/home/forge/www.firstfriends.org/public/wp-blog-header.php:19)
  at require('/home/forge/www.firstfriends.org/public/wp-blog-header.php')
     (/home/forge/www.firstfriends.org/public/index.php:17)                
[3/7] ViewException
Illuminate\View\ViewException:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, )) (View: /home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/resources/views/components/staff-list.blade.php)

  at /home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:760
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Concerns/ManagesComponents.php:100)
  at Illuminate\View\Factory->renderComponent()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/b3050c1b316309adb016e643bc23517c98b11785.php:27)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/b3050c1b316309adb016e643bc23517c98b11785.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Concerns/ManagesComponents.php:104)
  at Illuminate\View\Factory->renderComponent()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/35695d88ec4f7fadf3e56c81ebc967a0e9707608.php:22)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/35695d88ec4f7fadf3e56c81ebc967a0e9707608.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:492)
  at Illuminate\View\View->__toString()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/vendor/log1x/acf-composer/src/Block.php:293)
  at Log1x\AcfComposer\Block->Log1x\AcfComposer\{closure}()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:708)
  at acf_render_block()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:610)
  at acf_rendered_block()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:533)
  at acf_render_block_callback()
     (/home/forge/www.firstfriends.org/public/wp-includes/class-wp-block.php:519)
  at WP_Block->render()
     (/home/forge/www.firstfriends.org/public/wp-includes/blocks.php:2061)
  at render_block()
     (/home/forge/www.firstfriends.org/public/wp-includes/blocks.php:2113)
  at do_blocks()
     (/home/forge/www.firstfriends.org/public/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters()
     (/home/forge/www.firstfriends.org/public/wp-includes/plugin.php:205)
  at apply_filters()
     (/home/forge/www.firstfriends.org/public/wp-includes/post-template.php:256)
  at the_content()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/0f4704e3e75b62a95967c3872af35080ff801e13.php:1)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/0f4704e3e75b62a95967c3872af35080ff801e13.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php:5)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php:54)
  at include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php')
     (/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php:106)
  at require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php')
     (/home/forge/www.firstfriends.org/public/wp-blog-header.php:19)
  at require('/home/forge/www.firstfriends.org/public/wp-blog-header.php')
     (/home/forge/www.firstfriends.org/public/index.php:17)                
[2/7] QueryException
Illuminate\Database\QueryException:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 (SQL: select * from `wp_posts` where `ID` in (?) and `post_type` = staff and `post_status` = publish order by FIELD(ID, ))

  at /home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:760
  at Illuminate\Database\Connection->runQueryCallback()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:720)
  at Illuminate\Database\Connection->run()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:405)
  at Illuminate\Database\Connection->select()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Query/Builder.php:2705)
  at Illuminate\Database\Query\Builder->runSelect()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Query/Builder.php:2694)
  at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Query/Builder.php:3230)
  at Illuminate\Database\Query\Builder->onceWithColumns()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Query/Builder.php:2693)
  at Illuminate\Database\Query\Builder->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Eloquent/Builder.php:710)
  at Illuminate\Database\Eloquent\Builder->getModels()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Eloquent/Builder.php:694)
  at Illuminate\Database\Eloquent\Builder->get()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/app/View/Components/StaffGrid.php:40)
  at App\View\Components\StaffGrid->setStaffData()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/app/View/Components/StaffGrid.php:33)
  at App\View\Components\StaffGrid->__construct()
  at ReflectionClass->newInstanceArgs()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/container/Container.php:929)
  at Illuminate\Container\Container->build()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/container/Container.php:770)
  at Illuminate\Container\Container->resolve()
     (/home/forge/www.firstfriends.org/public/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:856)
  at Illuminate\Foundation\Application->resolve()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/container/Container.php:706)
  at Illuminate\Container\Container->make()
     (/home/forge/www.firstfriends.org/public/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:841)
  at Illuminate\Foundation\Application->make()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Component.php:105)
  at Illuminate\View\Component::resolve()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/89efecfc2c7e7de0a957cf4b60401ad4ae2afef0.php:10)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/89efecfc2c7e7de0a957cf4b60401ad4ae2afef0.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Concerns/ManagesComponents.php:100)
  at Illuminate\View\Factory->renderComponent()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/b3050c1b316309adb016e643bc23517c98b11785.php:27)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/b3050c1b316309adb016e643bc23517c98b11785.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Concerns/ManagesComponents.php:104)
  at Illuminate\View\Factory->renderComponent()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/35695d88ec4f7fadf3e56c81ebc967a0e9707608.php:22)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/35695d88ec4f7fadf3e56c81ebc967a0e9707608.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:492)
  at Illuminate\View\View->__toString()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/vendor/log1x/acf-composer/src/Block.php:293)
  at Log1x\AcfComposer\Block->Log1x\AcfComposer\{closure}()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:708)
  at acf_render_block()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:610)
  at acf_rendered_block()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:533)
  at acf_render_block_callback()
     (/home/forge/www.firstfriends.org/public/wp-includes/class-wp-block.php:519)
  at WP_Block->render()
     (/home/forge/www.firstfriends.org/public/wp-includes/blocks.php:2061)
  at render_block()
     (/home/forge/www.firstfriends.org/public/wp-includes/blocks.php:2113)
  at do_blocks()
     (/home/forge/www.firstfriends.org/public/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters()
     (/home/forge/www.firstfriends.org/public/wp-includes/plugin.php:205)
  at apply_filters()
     (/home/forge/www.firstfriends.org/public/wp-includes/post-template.php:256)
  at the_content()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/0f4704e3e75b62a95967c3872af35080ff801e13.php:1)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/0f4704e3e75b62a95967c3872af35080ff801e13.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php:5)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php:54)
  at include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php')
     (/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php:106)
  at require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php')
     (/home/forge/www.firstfriends.org/public/wp-blog-header.php:19)
  at require('/home/forge/www.firstfriends.org/public/wp-blog-header.php')
     (/home/forge/www.firstfriends.org/public/index.php:17)                
[1/7] PDOException
PDOException:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1

  at /home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:414
  at PDO->prepare()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:414)
  at Illuminate\Database\Connection->Illuminate\Database\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:753)
  at Illuminate\Database\Connection->runQueryCallback()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:720)
  at Illuminate\Database\Connection->run()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Connection.php:405)
  at Illuminate\Database\Connection->select()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Query/Builder.php:2705)
  at Illuminate\Database\Query\Builder->runSelect()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Query/Builder.php:2694)
  at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Query/Builder.php:3230)
  at Illuminate\Database\Query\Builder->onceWithColumns()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Query/Builder.php:2693)
  at Illuminate\Database\Query\Builder->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Eloquent/Builder.php:710)
  at Illuminate\Database\Eloquent\Builder->getModels()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/database/Eloquent/Builder.php:694)
  at Illuminate\Database\Eloquent\Builder->get()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/app/View/Components/StaffGrid.php:40)
  at App\View\Components\StaffGrid->setStaffData()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/app/View/Components/StaffGrid.php:33)
  at App\View\Components\StaffGrid->__construct()
  at ReflectionClass->newInstanceArgs()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/container/Container.php:929)
  at Illuminate\Container\Container->build()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/container/Container.php:770)
  at Illuminate\Container\Container->resolve()
     (/home/forge/www.firstfriends.org/public/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:856)
  at Illuminate\Foundation\Application->resolve()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/container/Container.php:706)
  at Illuminate\Container\Container->make()
     (/home/forge/www.firstfriends.org/public/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:841)
  at Illuminate\Foundation\Application->make()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Component.php:105)
  at Illuminate\View\Component::resolve()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/89efecfc2c7e7de0a957cf4b60401ad4ae2afef0.php:10)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/89efecfc2c7e7de0a957cf4b60401ad4ae2afef0.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Concerns/ManagesComponents.php:100)
  at Illuminate\View\Factory->renderComponent()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/b3050c1b316309adb016e643bc23517c98b11785.php:27)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/b3050c1b316309adb016e643bc23517c98b11785.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Concerns/ManagesComponents.php:104)
  at Illuminate\View\Factory->renderComponent()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/35695d88ec4f7fadf3e56c81ebc967a0e9707608.php:22)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/35695d88ec4f7fadf3e56c81ebc967a0e9707608.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:492)
  at Illuminate\View\View->__toString()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/vendor/log1x/acf-composer/src/Block.php:293)
  at Log1x\AcfComposer\Block->Log1x\AcfComposer\{closure}()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:708)
  at acf_render_block()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:610)
  at acf_rendered_block()
     (/home/forge/www.firstfriends.org/public/wp-content/plugins/advanced-custom-fields-pro/pro/blocks.php:533)
  at acf_render_block_callback()
     (/home/forge/www.firstfriends.org/public/wp-includes/class-wp-block.php:519)
  at WP_Block->render()
     (/home/forge/www.firstfriends.org/public/wp-includes/blocks.php:2061)
  at render_block()
     (/home/forge/www.firstfriends.org/public/wp-includes/blocks.php:2113)
  at do_blocks()
     (/home/forge/www.firstfriends.org/public/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters()
     (/home/forge/www.firstfriends.org/public/wp-includes/plugin.php:205)
  at apply_filters()
     (/home/forge/www.firstfriends.org/public/wp-includes/post-template.php:256)
  at the_content()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/0f4704e3e75b62a95967c3872af35080ff801e13.php:1)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/0f4704e3e75b62a95967c3872af35080ff801e13.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php:5)
  at require('/home/forge/www.firstfriends.org/public/wp-content/cache/acorn/framework/views/3db3609f914ae39e137af1da8cbd8e7655ddb20b.php')
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/forge/www.firstfriends.org/public/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php:54)
  at include('/home/forge/www.firstfriends.org/public/wp-content/themes/sagetheme/index.php')
     (/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php:106)
  at require_once('/home/forge/www.firstfriends.org/public/wp-includes/template-loader.php')
     (/home/forge/www.firstfriends.org/public/wp-blog-header.php:19)
  at require('/home/forge/www.firstfriends.org/public/wp-blog-header.php')
     (/home/forge/www.firstfriends.org/public/index.php:17)