ErrorException (E_ERROR)
View [partials.hero] not found. (View: /home/agilemonster/public_html/wp-content/themes/agile-monster/resources/views/taxonomy.blade.php)
Previous exceptions
  • View [partials.hero] not found. (0)
ErrorException thrown with message "View [partials.hero] not found. (View: /home/agilemonster/public_html/wp-content/themes/agile-monster/resources/views/taxonomy.blade.php)" Stacktrace: #16 ErrorException in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/FileViewFinder.php:137 #15 Illuminate\View\Engines\CompilerEngine:handleViewException in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/Engines/PhpEngine.php:60 #14 InvalidArgumentException in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/FileViewFinder.php:137 #13 Illuminate\View\FileViewFinder:findInPaths in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/FileViewFinder.php:79 #12 Illuminate\View\FileViewFinder:find in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/Factory.php:138 #11 Illuminate\View\Factory:make in /home/agilemonster/public_html/wp-content/themes/agile-monster/storage/framework/views/f68878bafd73abe1e1dc7c76f45e817ceb61ede1.php:3 #10 require in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/filesystem/Filesystem.php:107 #9 Illuminate\Filesystem\Filesystem:Illuminate\Filesystem\{closure} in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/filesystem/Filesystem.php:108 #8 Illuminate\Filesystem\Filesystem:getRequire in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/Engines/PhpEngine.php:58 #7 Illuminate\View\Engines\PhpEngine:evaluatePath in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/Engines/CompilerEngine.php:61 #6 Illuminate\View\Engines\CompilerEngine:get in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/View.php:139 #5 Illuminate\View\View:getContents in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/View.php:122 #4 Illuminate\View\View:renderContents in /home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/View.php:91 #3 Illuminate\View\View:render in /home/agilemonster/public_html/wp-content/themes/agile-monster/index.php:1 #2 include in /home/agilemonster/public_html/wp-includes/template-loader.php:106 #1 require_once in /home/agilemonster/public_html/wp-blog-header.php:19 #0 require in /home/agilemonster/public_html/index.php:17
16
ErrorException
/vendor/illuminate/view/FileViewFinder.php137
15
Illuminate\View\Engines\CompilerEngine handleViewException
/vendor/illuminate/view/Engines/PhpEngine.php60
14
InvalidArgumentException
/vendor/illuminate/view/FileViewFinder.php137
13
Illuminate\View\FileViewFinder findInPaths
/vendor/illuminate/view/FileViewFinder.php79
12
Illuminate\View\FileViewFinder find
/vendor/illuminate/view/Factory.php138
11
Illuminate\View\Factory make
/storage/framework/views/f68878bafd73abe1e1dc7c76f45e817ceb61ede1.php3
10
require
/vendor/illuminate/filesystem/Filesystem.php107
9
Illuminate\Filesystem\Filesystem Illuminate\Filesystem\{closure}
/vendor/illuminate/filesystem/Filesystem.php108
8
Illuminate\Filesystem\Filesystem getRequire
/vendor/illuminate/view/Engines/PhpEngine.php58
7
Illuminate\View\Engines\PhpEngine evaluatePath
/vendor/illuminate/view/Engines/CompilerEngine.php61
6
Illuminate\View\Engines\CompilerEngine get
/vendor/illuminate/view/View.php139
5
Illuminate\View\View getContents
/vendor/illuminate/view/View.php122
4
Illuminate\View\View renderContents
/vendor/illuminate/view/View.php91
3
Illuminate\View\View render
/index.php1
2
include
/home/agilemonster/public_html/wp-includes/template-loader.php106
1
require_once
/home/agilemonster/public_html/wp-blog-header.php19
0
require
/home/agilemonster/public_html/index.php17
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/FileViewFinder.php
    /**
     * Find the given view in the list of paths.
     *
     * @param  string  $name
     * @param  array  $paths
     * @return string
     *
     * @throws \InvalidArgumentException
     */
    protected function findInPaths($name, $paths)
    {
        foreach ((array) $paths as $path) {
            foreach ($this->getPossibleViewFiles($name) as $file) {
                if ($this->files->exists($viewPath = $path.'/'.$file)) {
                    return $viewPath;
                }
            }
        }
 
        throw new InvalidArgumentException("View [{$name}] not found.");
    }
 
    /**
     * Get an array of possible view files.
     *
     * @param  string  $name
     * @return array
     */
    protected function getPossibleViewFiles($name)
    {
        return array_map(function ($extension) use ($name) {
            return str_replace('.', '/', $name).'.'.$extension;
        }, $this->extensions);
    }
 
    /**
     * Add a location to the finder.
     *
     * @param  string  $location
     * @return void
Arguments
  1. "View [partials.hero] not found. (View: /home/agilemonster/public_html/wp-content/themes/agile-monster/resources/views/taxonomy.blade.php)"
    
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/Engines/PhpEngine.php
    /**
     * Get the evaluated contents of the view at the given path.
     *
     * @param  string  $path
     * @param  array  $data
     * @return string
     */
    protected function evaluatePath($path, $data)
    {
        $obLevel = ob_get_level();
 
        ob_start();
 
        // We'll evaluate the contents of the view inside a try/catch block so we can
        // flush out any stray output that might get out before an error occurs or
        // an exception is thrown. This prevents any partial views from leaking.
        try {
            $this->files->getRequire($path, $data);
        } catch (Throwable $e) {
            $this->handleViewException($e, $obLevel);
        }
 
        return ltrim(ob_get_clean());
    }
 
    /**
     * Handle a view exception.
     *
     * @param  \Throwable  $e
     * @param  int  $obLevel
     * @return void
     *
     * @throws \Throwable
     */
    protected function handleViewException(Throwable $e, $obLevel)
    {
        while (ob_get_level() > $obLevel) {
            ob_end_clean();
        }
 
Arguments
  1. InvalidArgumentException {#11328
      #message: "View [partials.hero] not found."
      #code: 0
      #file: "/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/FileViewFinder.php"
      #line: 137
    }
    
  2. 3
    
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/FileViewFinder.php
    /**
     * Find the given view in the list of paths.
     *
     * @param  string  $name
     * @param  array  $paths
     * @return string
     *
     * @throws \InvalidArgumentException
     */
    protected function findInPaths($name, $paths)
    {
        foreach ((array) $paths as $path) {
            foreach ($this->getPossibleViewFiles($name) as $file) {
                if ($this->files->exists($viewPath = $path.'/'.$file)) {
                    return $viewPath;
                }
            }
        }
 
        throw new InvalidArgumentException("View [{$name}] not found.");
    }
 
    /**
     * Get an array of possible view files.
     *
     * @param  string  $name
     * @return array
     */
    protected function getPossibleViewFiles($name)
    {
        return array_map(function ($extension) use ($name) {
            return str_replace('.', '/', $name).'.'.$extension;
        }, $this->extensions);
    }
 
    /**
     * Add a location to the finder.
     *
     * @param  string  $location
     * @return void
Arguments
  1. "View [partials.hero] not found."
    
Exception message: View [partials.hero] not found.
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/FileViewFinder.php
        }
    }
 
    /**
     * Get the fully qualified location of the view.
     *
     * @param  string  $name
     * @return string
     */
    public function find($name)
    {
        if (isset($this->views[$name])) {
            return $this->views[$name];
        }
 
        if ($this->hasHintInformation($name = trim($name))) {
            return $this->views[$name] = $this->findNamespacedView($name);
        }
 
        return $this->views[$name] = $this->findInPaths($name, $this->paths);
    }
 
    /**
     * Get the path to a template with a named path.
     *
     * @param  string  $name
     * @return string
     */
    protected function findNamespacedView($name)
    {
        [$namespace, $view] = $this->parseNamespaceSegments($name);
 
        return $this->findInPaths($view, $this->hints[$namespace]);
    }
 
    /**
     * Get the segments of a template with a named path.
     *
     * @param  string  $name
     * @return array
Arguments
  1. "partials.hero"
    
  2. array:1 [
      0 => "/home/agilemonster/public_html/wp-content/themes/agile-monster/resources/views"
    ]
    
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/Factory.php
    {
        $data = array_merge($mergeData, $this->parseData($data));
 
        return tap($this->viewInstance($path, $path, $data), function ($view) {
            $this->callCreator($view);
        });
    }
 
    /**
     * Get the evaluated view contents for the given view.
     *
     * @param  string  $view
     * @param  \Illuminate\Contracts\Support\Arrayable|array  $data
     * @param  array  $mergeData
     * @return \Illuminate\Contracts\View\View
     */
    public function make($view, $data = [], $mergeData = [])
    {
        $path = $this->finder->find(
            $view = $this->normalizeName($view)
        );
 
        // Next, we will create the view instance and call the view creator for the view
        // which can set any data, etc. Then we will return the view instance back to
        // the caller for rendering or performing other view manipulations on this.
        $data = array_merge($mergeData, $this->parseData($data));
 
        return tap($this->viewInstance($view, $path, $data), function ($view) {
            $this->callCreator($view);
        });
    }
 
    /**
     * Get the first view that actually exists from the given list.
     *
     * @param  array  $views
     * @param  \Illuminate\Contracts\Support\Arrayable|array  $data
     * @param  array  $mergeData
     * @return \Illuminate\Contracts\View\View
     *
Arguments
  1. "partials.hero"
    
/home/agilemonster/public_html/wp-content/themes/agile-monster/storage/framework/views/f68878bafd73abe1e1dc7c76f45e817ceb61ede1.php
<?php $__env->startSection('content'); ?>
 
    <?php echo $__env->make('partials.hero', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
 
    <?php
        $category = get_queried_object();
        $intro_text_left = get_field('intro_text_left', $category->taxonomy . '_' . $category->term_id);
        $intro_text_right = get_field('intro_text_right', $category->taxonomy . '_' . $category->term_id);
        $video_block = get_field('video_block', $category->taxonomy . '_' . $category->term_id);
        $cta = get_field('cta', $category->taxonomy . '_' . $category->term_id);
    ?>
 
    <?php if($intro_text_left || $intro_text_right): ?>
        <section data-viewport="detect" data-animate="fade">
            <div class="grid-container">
                <div class="grid-x grid-margin-x">
                    <div class="cell medium-5 small-12">
                        <?php echo $intro_text_left; ?>
 
                    </div>
                    <div class="cell medium-6 medium-offset-1 small-12">
                        <?php echo $intro_text_right; ?>
 
                    </div>
                </div>
            </div>
        </section>
    <?php endif; ?>
 
    <?php if($video_block): ?>
        <section class="panel secondary white-overlap-bottom video">
            <div class="grid-container">
                <div class="grid-x">
                    <div class="cell large-5">
                        <?php echo $video_block['text_1']; ?>
 
                    </div>
                    <div class="cell large-6 large-offset-1">
                        <?php echo $video_block['text_2']; ?>
 
Arguments
  1. "partials.hero"
    
  2. array:14 [
    "__env" => Illuminate\View\Factory {#6355}
    "app" => Roots\Acorn\Application {#6264}
    "siteName" => "Agile Monster"
    "title" => "E-commerce Case Study"
    "term" => WP_Term {#11315}
    "fields" => array:2 [
    "page_sections" => false
    "hero_image" => false
    ]
    "acf_data" => []
    "cat_featured_image" => null
    "contact" => array:6 [
    "email" => "Contact@agilemonster.co.uk"
    "phone" => "01133 501 766"
    "twitter" => ""
    "facebook" => ""
    "linkedin" => ""
    "address" => """
    7 Park Row, Leeds,<br />\r\n
    England, LS1 5HD
    """
    ]
    "global" => array:6 [
    "our_purpose" => "To empower teams to drive change through agile thinking"
    "our_principles" => array:6 [
    0 => array:2 [
    "subheading" => "Agility At Work"
    "text" => "We're here to help our clients change how they work, for good. More output, better ways of working and the finding the edge that makes the difference."
    ]
    1 => array:2 [
    "subheading" => "Relentless Drive"
    "text" => "We're relentlessly driven to provide our clients with the best possible solution. "
    ]
    2 => array:2 [
    "subheading" => "Always Challenge"
    "text" => "We work as partners with our clients. We're here to offer an outsiders perspective and challenge ways of working – in a positive and constructive way!"
    ]
    3 => array:2 [
    "subheading" => "One Team"
    "text" => "At Agile, we become an extension of your team. We're team players and work closely with our clients to be the best version of ourselves."
    ]
    4 => array:2 [
    "subheading" => "Simplicity Wins"
    "text" => "We keep it simple. Simplicity scales, complexity fails."
    ]
    5 => array:2 [
    "subheading" => "Ambitious For Change"
    "text" => "We're an ambitious team that believes in the power of Scrum and Agile ways of working. We work hard to spread the learning and empower our clients to change their game."
    ]
    ]
    "clients" => array:7 [
    0 => array:24 [
    "ID" => 341
    "id" => 341
    "title" => "AM_Client_British_Army"
    "filename" => "AM_Client_British_Army.png"
    "filesize" => 11814
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "link" => "https://agilemonster.co.uk/am_client_british_army/"
    "alt" => "British Army"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_british_army"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:16"
    "modified" => "2022-08-03 14:04:19"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    1 => array:24 [
    "ID" => 342
    "id" => 342
    "title" => "AM_Client_Farnell"
    "filename" => "AM_Client_Farnell.png"
    "filesize" => 13206
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "link" => "https://agilemonster.co.uk/am_client_farnell/"
    "alt" => "Farnell"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_farnell"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:29"
    "modified" => "2022-08-03 14:04:32"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    2 => array:24 [
    "ID" => 343
    "id" => 343
    "title" => "AM_Client_FGH"
    "filename" => "AM_Client_FGH.png"
    "filesize" => 5349
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "link" => "https://agilemonster.co.uk/am_client_fgh/"
    "alt" => "FGH"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_fgh"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:41"
    "modified" => "2022-08-03 14:04:44"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    3 => array:24 [
    "ID" => 344
    "id" => 344
    "title" => "AM_Client_Halfords"
    "filename" => "AM_Client_Halfords.png"
    "filesize" => 6674
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "link" => "https://agilemonster.co.uk/am_client_halfords/"
    "alt" => "Halfords"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_halfords"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:56"
    "modified" => "2022-08-03 14:04:58"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    4 => array:24 [
    "ID" => 345
    "id" => 345
    "title" => "AM_Client_Link_Group"
    "filename" => "AM_Client_Link_Group.png"
    "filesize" => 7116
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "link" => "https://agilemonster.co.uk/am_client_link_group/"
    "alt" => "Link Group"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_link_group"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:09"
    "modified" => "2022-08-03 14:05:12"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    5 => array:24 [
    "ID" => 346
    "id" => 346
    "title" => "AM_Client_SIS"
    "filename" => "AM_Client_SIS.png"
    "filesize" => 4680
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "link" => "https://agilemonster.co.uk/am_client_sis/"
    "alt" => "SIS"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_sis"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:26"
    "modified" => "2022-08-03 14:05:29"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    6 => array:24 [
    "ID" => 347
    "id" => 347
    "title" => "AM_Client_TransUnion"
    "filename" => "AM_Client_TransUnion.png"
    "filesize" => 8805
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "link" => "https://agilemonster.co.uk/am_client_transunion/"
    "alt" => "TransUnion"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_transunion"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:42"
    "modified" => "2022-08-03 14:05:45"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    ]
    "calendly_cta_image" => array:24 [
    "ID" => 546
    "id" => 546
    "title" => "Calendly_CTA_Profile_Picture_V1.0"
    "filename" => "Calendly_CTA_Profile_Picture_V1.0.png"
    "filesize" => 120133
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "link" => "https://agilemonster.co.uk/calendly_cta_profile_picture_v1-0/"
    "alt" => "Discuss your challenge with Steve"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "calendly_cta_profile_picture_v1-0"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2023-04-17 13:50:41"
    "modified" => "2023-04-17 13:51:06"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 500
    "height" => 500
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0-300x300.png"
    "medium-width" => 300
    "medium-height" => 300
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "medium_large-width" => 500
    "medium_large-height" => 500
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "large-width" => 500
    "large-height" => 500
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "1536x1536-width" => 500
    "1536x1536-height" => 500
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "2048x2048-width" => 500
    "2048x2048-height" => 500
    ]
    ]
    "calendly_cta_text" => "Discuss Your Challenge With Steve"
    "calendly_cta_link" => "https://calendly.com/steve-crossland-agility/intro_to_agile_monster"
    ]
    "featured_image" => "https://agilemonster.co.uk/wp-content/uploads/2022/07/agile_monster_case_study.png"
    "blog_posts" => WP_Query {#11365}
    "caseStudies" => WP_Query {#11360}
    "services" => WP_Query {#11387}
    ]
    
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/filesystem/Filesystem.php
 
/**
* Get the returned value of a file.
*
* @param  string  $path
* @param  array  $data
* @return mixed
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
public function getRequire($path, array $data = [])
{
if ($this->isFile($path)) {
$__path = $path;
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
/**
* Require the given file once.
*
* @param  string  $path
* @param  array  $data
* @return mixed
*/
public function requireOnce($path, array $data = [])
{
if ($this->isFile($path)) {
$__path = $path;
$__data = $data;
return (static function () use ($__path, $__data) {
Arguments
  1. "/home/agilemonster/public_html/wp-content/themes/agile-monster/storage/framework/views/f68878bafd73abe1e1dc7c76f45e817ceb61ede1.php"
    
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/filesystem/Filesystem.php
    /**
* Get the returned value of a file.
*
* @param  string  $path
* @param  array  $data
* @return mixed
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
public function getRequire($path, array $data = [])
{
if ($this->isFile($path)) {
$__path = $path;
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
/**
* Require the given file once.
*
* @param  string  $path
* @param  array  $data
* @return mixed
*/
public function requireOnce($path, array $data = [])
{
if ($this->isFile($path)) {
$__path = $path;
$__data = $data;
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/Engines/PhpEngine.php
    }
/**
* Get the evaluated contents of the view at the given path.
*
* @param  string  $path
* @param  array  $data
* @return string
*/
protected function evaluatePath($path, $data)
{
$obLevel = ob_get_level();
ob_start();
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
$this->files->getRequire($path, $data);
} catch (Throwable $e) {
$this->handleViewException($e, $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param  \Throwable  $e
* @param  int  $obLevel
* @return void
*
* @throws \Throwable
*/
protected function handleViewException(Throwable $e, $obLevel)
{
while (ob_get_level() > $obLevel) {
ob_end_clean();
Arguments
  1. "/home/agilemonster/public_html/wp-content/themes/agile-monster/storage/framework/views/f68878bafd73abe1e1dc7c76f45e817ceb61ede1.php"
    
  2. array:14 [
    "__env" => Illuminate\View\Factory {#6355}
    "app" => Roots\Acorn\Application {#6264}
    "siteName" => "Agile Monster"
    "title" => "E-commerce Case Study"
    "term" => WP_Term {#11315}
    "fields" => array:2 [
    "page_sections" => false
    "hero_image" => false
    ]
    "acf_data" => []
    "cat_featured_image" => null
    "contact" => array:6 [
    "email" => "Contact@agilemonster.co.uk"
    "phone" => "01133 501 766"
    "twitter" => ""
    "facebook" => ""
    "linkedin" => ""
    "address" => """
    7 Park Row, Leeds,<br />\r\n
    England, LS1 5HD
    """
    ]
    "global" => array:6 [
    "our_purpose" => "To empower teams to drive change through agile thinking"
    "our_principles" => array:6 [
    0 => array:2 [
    "subheading" => "Agility At Work"
    "text" => "We're here to help our clients change how they work, for good. More output, better ways of working and the finding the edge that makes the difference."
    ]
    1 => array:2 [
    "subheading" => "Relentless Drive"
    "text" => "We're relentlessly driven to provide our clients with the best possible solution. "
    ]
    2 => array:2 [
    "subheading" => "Always Challenge"
    "text" => "We work as partners with our clients. We're here to offer an outsiders perspective and challenge ways of working – in a positive and constructive way!"
    ]
    3 => array:2 [
    "subheading" => "One Team"
    "text" => "At Agile, we become an extension of your team. We're team players and work closely with our clients to be the best version of ourselves."
    ]
    4 => array:2 [
    "subheading" => "Simplicity Wins"
    "text" => "We keep it simple. Simplicity scales, complexity fails."
    ]
    5 => array:2 [
    "subheading" => "Ambitious For Change"
    "text" => "We're an ambitious team that believes in the power of Scrum and Agile ways of working. We work hard to spread the learning and empower our clients to change their game."
    ]
    ]
    "clients" => array:7 [
    0 => array:24 [
    "ID" => 341
    "id" => 341
    "title" => "AM_Client_British_Army"
    "filename" => "AM_Client_British_Army.png"
    "filesize" => 11814
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "link" => "https://agilemonster.co.uk/am_client_british_army/"
    "alt" => "British Army"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_british_army"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:16"
    "modified" => "2022-08-03 14:04:19"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    1 => array:24 [
    "ID" => 342
    "id" => 342
    "title" => "AM_Client_Farnell"
    "filename" => "AM_Client_Farnell.png"
    "filesize" => 13206
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "link" => "https://agilemonster.co.uk/am_client_farnell/"
    "alt" => "Farnell"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_farnell"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:29"
    "modified" => "2022-08-03 14:04:32"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    2 => array:24 [
    "ID" => 343
    "id" => 343
    "title" => "AM_Client_FGH"
    "filename" => "AM_Client_FGH.png"
    "filesize" => 5349
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "link" => "https://agilemonster.co.uk/am_client_fgh/"
    "alt" => "FGH"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_fgh"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:41"
    "modified" => "2022-08-03 14:04:44"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    3 => array:24 [
    "ID" => 344
    "id" => 344
    "title" => "AM_Client_Halfords"
    "filename" => "AM_Client_Halfords.png"
    "filesize" => 6674
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "link" => "https://agilemonster.co.uk/am_client_halfords/"
    "alt" => "Halfords"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_halfords"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:56"
    "modified" => "2022-08-03 14:04:58"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    4 => array:24 [
    "ID" => 345
    "id" => 345
    "title" => "AM_Client_Link_Group"
    "filename" => "AM_Client_Link_Group.png"
    "filesize" => 7116
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "link" => "https://agilemonster.co.uk/am_client_link_group/"
    "alt" => "Link Group"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_link_group"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:09"
    "modified" => "2022-08-03 14:05:12"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    5 => array:24 [
    "ID" => 346
    "id" => 346
    "title" => "AM_Client_SIS"
    "filename" => "AM_Client_SIS.png"
    "filesize" => 4680
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "link" => "https://agilemonster.co.uk/am_client_sis/"
    "alt" => "SIS"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_sis"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:26"
    "modified" => "2022-08-03 14:05:29"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    6 => array:24 [
    "ID" => 347
    "id" => 347
    "title" => "AM_Client_TransUnion"
    "filename" => "AM_Client_TransUnion.png"
    "filesize" => 8805
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "link" => "https://agilemonster.co.uk/am_client_transunion/"
    "alt" => "TransUnion"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_transunion"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:42"
    "modified" => "2022-08-03 14:05:45"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    ]
    "calendly_cta_image" => array:24 [
    "ID" => 546
    "id" => 546
    "title" => "Calendly_CTA_Profile_Picture_V1.0"
    "filename" => "Calendly_CTA_Profile_Picture_V1.0.png"
    "filesize" => 120133
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "link" => "https://agilemonster.co.uk/calendly_cta_profile_picture_v1-0/"
    "alt" => "Discuss your challenge with Steve"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "calendly_cta_profile_picture_v1-0"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2023-04-17 13:50:41"
    "modified" => "2023-04-17 13:51:06"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 500
    "height" => 500
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0-300x300.png"
    "medium-width" => 300
    "medium-height" => 300
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "medium_large-width" => 500
    "medium_large-height" => 500
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "large-width" => 500
    "large-height" => 500
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "1536x1536-width" => 500
    "1536x1536-height" => 500
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "2048x2048-width" => 500
    "2048x2048-height" => 500
    ]
    ]
    "calendly_cta_text" => "Discuss Your Challenge With Steve"
    "calendly_cta_link" => "https://calendly.com/steve-crossland-agility/intro_to_agile_monster"
    ]
    "featured_image" => "https://agilemonster.co.uk/wp-content/uploads/2022/07/agile_monster_case_study.png"
    "blog_posts" => WP_Query {#11365}
    "caseStudies" => WP_Query {#11360}
    "services" => WP_Query {#11387}
    ]
    
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/Engines/CompilerEngine.php
     *
* @param  string  $path
* @param  array  $data
* @return string
*/
public function get($path, array $data = [])
{
$this->lastCompiled[] = $path;
// If this given view has expired, which means it has simply been edited since
// it was last compiled, we will re-compile the views so we can evaluate a
// fresh copy of the view. We'll pass the compiler the path of the view.
if ($this->compiler->isExpired($path)) {
$this->compiler->compile($path);
}
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
array_pop($this->lastCompiled);
return $results;
}
/**
* Handle a view exception.
*
* @param  \Throwable  $e
* @param  int  $obLevel
* @return void
*
* @throws \Throwable
*/
protected function handleViewException(Throwable $e, $obLevel)
{
$e = new ErrorException($this->getMessage($e), 0, 1, $e->getFile(), $e->getLine(), $e);
parent::handleViewException($e, $obLevel);
Arguments
  1. "/home/agilemonster/public_html/wp-content/themes/agile-monster/storage/framework/views/f68878bafd73abe1e1dc7c76f45e817ceb61ede1.php"
    
  2. array:14 [
    "__env" => Illuminate\View\Factory {#6355}
    "app" => Roots\Acorn\Application {#6264}
    "siteName" => "Agile Monster"
    "title" => "E-commerce Case Study"
    "term" => WP_Term {#11315}
    "fields" => array:2 [
    "page_sections" => false
    "hero_image" => false
    ]
    "acf_data" => []
    "cat_featured_image" => null
    "contact" => array:6 [
    "email" => "Contact@agilemonster.co.uk"
    "phone" => "01133 501 766"
    "twitter" => ""
    "facebook" => ""
    "linkedin" => ""
    "address" => """
    7 Park Row, Leeds,<br />\r\n
    England, LS1 5HD
    """
    ]
    "global" => array:6 [
    "our_purpose" => "To empower teams to drive change through agile thinking"
    "our_principles" => array:6 [
    0 => array:2 [
    "subheading" => "Agility At Work"
    "text" => "We're here to help our clients change how they work, for good. More output, better ways of working and the finding the edge that makes the difference."
    ]
    1 => array:2 [
    "subheading" => "Relentless Drive"
    "text" => "We're relentlessly driven to provide our clients with the best possible solution. "
    ]
    2 => array:2 [
    "subheading" => "Always Challenge"
    "text" => "We work as partners with our clients. We're here to offer an outsiders perspective and challenge ways of working – in a positive and constructive way!"
    ]
    3 => array:2 [
    "subheading" => "One Team"
    "text" => "At Agile, we become an extension of your team. We're team players and work closely with our clients to be the best version of ourselves."
    ]
    4 => array:2 [
    "subheading" => "Simplicity Wins"
    "text" => "We keep it simple. Simplicity scales, complexity fails."
    ]
    5 => array:2 [
    "subheading" => "Ambitious For Change"
    "text" => "We're an ambitious team that believes in the power of Scrum and Agile ways of working. We work hard to spread the learning and empower our clients to change their game."
    ]
    ]
    "clients" => array:7 [
    0 => array:24 [
    "ID" => 341
    "id" => 341
    "title" => "AM_Client_British_Army"
    "filename" => "AM_Client_British_Army.png"
    "filesize" => 11814
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "link" => "https://agilemonster.co.uk/am_client_british_army/"
    "alt" => "British Army"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_british_army"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:16"
    "modified" => "2022-08-03 14:04:19"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    1 => array:24 [
    "ID" => 342
    "id" => 342
    "title" => "AM_Client_Farnell"
    "filename" => "AM_Client_Farnell.png"
    "filesize" => 13206
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "link" => "https://agilemonster.co.uk/am_client_farnell/"
    "alt" => "Farnell"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_farnell"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:29"
    "modified" => "2022-08-03 14:04:32"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    2 => array:24 [
    "ID" => 343
    "id" => 343
    "title" => "AM_Client_FGH"
    "filename" => "AM_Client_FGH.png"
    "filesize" => 5349
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "link" => "https://agilemonster.co.uk/am_client_fgh/"
    "alt" => "FGH"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_fgh"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:41"
    "modified" => "2022-08-03 14:04:44"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    3 => array:24 [
    "ID" => 344
    "id" => 344
    "title" => "AM_Client_Halfords"
    "filename" => "AM_Client_Halfords.png"
    "filesize" => 6674
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "link" => "https://agilemonster.co.uk/am_client_halfords/"
    "alt" => "Halfords"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_halfords"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:56"
    "modified" => "2022-08-03 14:04:58"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    4 => array:24 [
    "ID" => 345
    "id" => 345
    "title" => "AM_Client_Link_Group"
    "filename" => "AM_Client_Link_Group.png"
    "filesize" => 7116
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "link" => "https://agilemonster.co.uk/am_client_link_group/"
    "alt" => "Link Group"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_link_group"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:09"
    "modified" => "2022-08-03 14:05:12"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    5 => array:24 [
    "ID" => 346
    "id" => 346
    "title" => "AM_Client_SIS"
    "filename" => "AM_Client_SIS.png"
    "filesize" => 4680
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "link" => "https://agilemonster.co.uk/am_client_sis/"
    "alt" => "SIS"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_sis"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:26"
    "modified" => "2022-08-03 14:05:29"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    6 => array:24 [
    "ID" => 347
    "id" => 347
    "title" => "AM_Client_TransUnion"
    "filename" => "AM_Client_TransUnion.png"
    "filesize" => 8805
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "link" => "https://agilemonster.co.uk/am_client_transunion/"
    "alt" => "TransUnion"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_transunion"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:42"
    "modified" => "2022-08-03 14:05:45"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    ]
    "calendly_cta_image" => array:24 [
    "ID" => 546
    "id" => 546
    "title" => "Calendly_CTA_Profile_Picture_V1.0"
    "filename" => "Calendly_CTA_Profile_Picture_V1.0.png"
    "filesize" => 120133
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "link" => "https://agilemonster.co.uk/calendly_cta_profile_picture_v1-0/"
    "alt" => "Discuss your challenge with Steve"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "calendly_cta_profile_picture_v1-0"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2023-04-17 13:50:41"
    "modified" => "2023-04-17 13:51:06"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 500
    "height" => 500
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0-300x300.png"
    "medium-width" => 300
    "medium-height" => 300
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "medium_large-width" => 500
    "medium_large-height" => 500
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "large-width" => 500
    "large-height" => 500
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "1536x1536-width" => 500
    "1536x1536-height" => 500
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "2048x2048-width" => 500
    "2048x2048-height" => 500
    ]
    ]
    "calendly_cta_text" => "Discuss Your Challenge With Steve"
    "calendly_cta_link" => "https://calendly.com/steve-crossland-agility/intro_to_agile_monster"
    ]
    "featured_image" => "https://agilemonster.co.uk/wp-content/uploads/2022/07/agile_monster_case_study.png"
    "blog_posts" => WP_Query {#11365}
    "caseStudies" => WP_Query {#11360}
    "services" => WP_Query {#11387}
    ]
    
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/View.php
        $this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
* @return array
*/
public function gatherData()
{
$data = array_merge($this->factory->getShared(), $this->data);
foreach ($data as $key => $value) {
if ($value instanceof Renderable) {
$data[$key] = $value->render();
}
}
return $data;
}
Arguments
  1. "/home/agilemonster/public_html/wp-content/themes/agile-monster/resources/views/taxonomy.blade.php"
    
  2. array:14 [
    "__env" => Illuminate\View\Factory {#6355}
    "app" => Roots\Acorn\Application {#6264}
    "siteName" => "Agile Monster"
    "title" => "E-commerce Case Study"
    "term" => WP_Term {#11315}
    "fields" => array:2 [
    "page_sections" => false
    "hero_image" => false
    ]
    "acf_data" => []
    "cat_featured_image" => null
    "contact" => array:6 [
    "email" => "Contact@agilemonster.co.uk"
    "phone" => "01133 501 766"
    "twitter" => ""
    "facebook" => ""
    "linkedin" => ""
    "address" => """
    7 Park Row, Leeds,<br />\r\n
    England, LS1 5HD
    """
    ]
    "global" => array:6 [
    "our_purpose" => "To empower teams to drive change through agile thinking"
    "our_principles" => array:6 [
    0 => array:2 [
    "subheading" => "Agility At Work"
    "text" => "We're here to help our clients change how they work, for good. More output, better ways of working and the finding the edge that makes the difference."
    ]
    1 => array:2 [
    "subheading" => "Relentless Drive"
    "text" => "We're relentlessly driven to provide our clients with the best possible solution. "
    ]
    2 => array:2 [
    "subheading" => "Always Challenge"
    "text" => "We work as partners with our clients. We're here to offer an outsiders perspective and challenge ways of working – in a positive and constructive way!"
    ]
    3 => array:2 [
    "subheading" => "One Team"
    "text" => "At Agile, we become an extension of your team. We're team players and work closely with our clients to be the best version of ourselves."
    ]
    4 => array:2 [
    "subheading" => "Simplicity Wins"
    "text" => "We keep it simple. Simplicity scales, complexity fails."
    ]
    5 => array:2 [
    "subheading" => "Ambitious For Change"
    "text" => "We're an ambitious team that believes in the power of Scrum and Agile ways of working. We work hard to spread the learning and empower our clients to change their game."
    ]
    ]
    "clients" => array:7 [
    0 => array:24 [
    "ID" => 341
    "id" => 341
    "title" => "AM_Client_British_Army"
    "filename" => "AM_Client_British_Army.png"
    "filesize" => 11814
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "link" => "https://agilemonster.co.uk/am_client_british_army/"
    "alt" => "British Army"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_british_army"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:16"
    "modified" => "2022-08-03 14:04:19"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_British_Army.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    1 => array:24 [
    "ID" => 342
    "id" => 342
    "title" => "AM_Client_Farnell"
    "filename" => "AM_Client_Farnell.png"
    "filesize" => 13206
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "link" => "https://agilemonster.co.uk/am_client_farnell/"
    "alt" => "Farnell"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_farnell"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:29"
    "modified" => "2022-08-03 14:04:32"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Farnell.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    2 => array:24 [
    "ID" => 343
    "id" => 343
    "title" => "AM_Client_FGH"
    "filename" => "AM_Client_FGH.png"
    "filesize" => 5349
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "link" => "https://agilemonster.co.uk/am_client_fgh/"
    "alt" => "FGH"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_fgh"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:41"
    "modified" => "2022-08-03 14:04:44"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_FGH.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    3 => array:24 [
    "ID" => 344
    "id" => 344
    "title" => "AM_Client_Halfords"
    "filename" => "AM_Client_Halfords.png"
    "filesize" => 6674
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "link" => "https://agilemonster.co.uk/am_client_halfords/"
    "alt" => "Halfords"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_halfords"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:04:56"
    "modified" => "2022-08-03 14:04:58"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Halfords.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    4 => array:24 [
    "ID" => 345
    "id" => 345
    "title" => "AM_Client_Link_Group"
    "filename" => "AM_Client_Link_Group.png"
    "filesize" => 7116
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "link" => "https://agilemonster.co.uk/am_client_link_group/"
    "alt" => "Link Group"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_link_group"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:09"
    "modified" => "2022-08-03 14:05:12"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_Link_Group.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    5 => array:24 [
    "ID" => 346
    "id" => 346
    "title" => "AM_Client_SIS"
    "filename" => "AM_Client_SIS.png"
    "filesize" => 4680
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "link" => "https://agilemonster.co.uk/am_client_sis/"
    "alt" => "SIS"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_sis"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:26"
    "modified" => "2022-08-03 14:05:29"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_SIS.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    6 => array:24 [
    "ID" => 347
    "id" => 347
    "title" => "AM_Client_TransUnion"
    "filename" => "AM_Client_TransUnion.png"
    "filesize" => 8805
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "link" => "https://agilemonster.co.uk/am_client_transunion/"
    "alt" => "TransUnion"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "am_client_transunion"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2022-08-03 14:05:42"
    "modified" => "2022-08-03 14:05:45"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 400
    "height" => 200
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion-300x150.png"
    "medium-width" => 300
    "medium-height" => 150
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "medium_large-width" => 400
    "medium_large-height" => 200
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "large-width" => 400
    "large-height" => 200
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "1536x1536-width" => 400
    "1536x1536-height" => 200
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2022/08/AM_Client_TransUnion.png"
    "2048x2048-width" => 400
    "2048x2048-height" => 200
    ]
    ]
    ]
    "calendly_cta_image" => array:24 [
    "ID" => 546
    "id" => 546
    "title" => "Calendly_CTA_Profile_Picture_V1.0"
    "filename" => "Calendly_CTA_Profile_Picture_V1.0.png"
    "filesize" => 120133
    "url" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "link" => "https://agilemonster.co.uk/calendly_cta_profile_picture_v1-0/"
    "alt" => "Discuss your challenge with Steve"
    "author" => "1"
    "description" => ""
    "caption" => ""
    "name" => "calendly_cta_profile_picture_v1-0"
    "status" => "inherit"
    "uploaded_to" => 0
    "date" => "2023-04-17 13:50:41"
    "modified" => "2023-04-17 13:51:06"
    "menu_order" => 0
    "mime_type" => "image/png"
    "type" => "image"
    "subtype" => "png"
    "icon" => "https://agilemonster.co.uk/wp-includes/images/media/default.png"
    "width" => 500
    "height" => 500
    "sizes" => array:18 [
    "thumbnail" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0-150x150.png"
    "thumbnail-width" => 150
    "thumbnail-height" => 150
    "medium" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0-300x300.png"
    "medium-width" => 300
    "medium-height" => 300
    "medium_large" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "medium_large-width" => 500
    "medium_large-height" => 500
    "large" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "large-width" => 500
    "large-height" => 500
    "1536x1536" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "1536x1536-width" => 500
    "1536x1536-height" => 500
    "2048x2048" => "https://agilemonster.co.uk/wp-content/uploads/2023/04/Calendly_CTA_Profile_Picture_V1.0.png"
    "2048x2048-width" => 500
    "2048x2048-height" => 500
    ]
    ]
    "calendly_cta_text" => "Discuss Your Challenge With Steve"
    "calendly_cta_link" => "https://calendly.com/steve-crossland-agility/intro_to_agile_monster"
    ]
    "featured_image" => "https://agilemonster.co.uk/wp-content/uploads/2022/07/agile_monster_case_study.png"
    "blog_posts" => WP_Query {#11365}
    "caseStudies" => WP_Query {#11360}
    "services" => WP_Query {#11387}
    ]
    
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/View.php
 
throw $e;
}
}
/**
* Get the contents of the view instance.
*
* @return string
*/
protected function renderContents()
{
// We will keep track of the amount of views being rendered so we can flush
// the section after the complete rendering operation is done. This will
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each sections get flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
return $contents;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
/home/agilemonster/public_html/wp-content/themes/agile-monster/vendor/illuminate/view/View.php
        $this->view = $view;
$this->path = $path;
$this->engine = $engine;
$this->factory = $factory;
$this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
}
/**
* Get the string contents of the view.
*
* @param  callable|null  $callback
* @return array|string
*
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
// another view gets rendered in the future by the application developer.
$this->factory->flushStateIfDoneRendering();
return ! is_null($response) ? $response : $contents;
} catch (Throwable $e) {
$this->factory->flushState();
throw $e;
}
}
/**
* Get the contents of the view instance.
*
* @return string
/home/agilemonster/public_html/wp-content/themes/agile-monster/index.php
<?php echo \Roots\view(\Roots\app('sage.view'), \Roots\app('sage.data'))->render(); ?>
/home/agilemonster/public_html/wp-includes/template-loader.php
            }
break;
}
}
if ( ! $template ) {
$template = get_index_template();
}
/**
* Filters the path of the current template before including it.
*
* @since 3.0.0
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
}
return;
}
Arguments
  1. "/home/agilemonster/public_html/wp-content/themes/agile-monster/index.php"
    
/home/agilemonster/public_html/wp-blog-header.php
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
Arguments
  1. "/home/agilemonster/public_html/wp-includes/template-loader.php"
    
/home/agilemonster/public_html/index.php
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
Arguments
  1. "/home/agilemonster/public_html/wp-blog-header.php"
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_URI
"/case-studies/e-commerce-case-study/"
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, deflate"
HTTP_HOST
"agilemonster.co.uk"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36"
HTTP_FROM
"bingbot(at)microsoft.com"
HTTP_X_HTTPS
"1"
DOCUMENT_ROOT
"/home/agilemonster/public_html"
REMOTE_ADDR
"52.167.144.19"
REMOTE_PORT
"4483"
SERVER_ADDR
"5.134.14.110"
SERVER_NAME
"agilemonster.co.uk"
SERVER_ADMIN
"webmaster@agilemonster.co.uk"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REDIRECT_URL
"/case-studies/e-commerce-case-study/"
REDIRECT_REQUEST_METHOD
"GET"
HTTPS
"on"
HTTP_AUTHORIZATION
""
REDIRECT_STATUS
"200"
X_SPDY
"HTTP2"
SSL_PROTOCOL
"TLSv1.3"
SSL_CIPHER
"TLS_AES_256_GCM_SHA384"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_CIPHER_ALGKEYSIZE
"256"
SCRIPT_FILENAME
"/home/agilemonster/public_html/index.php"
QUERY_STRING
""
SCRIPT_URI
"https://agilemonster.co.uk/case-studies/e-commerce-case-study/"
SCRIPT_URL
"/case-studies/e-commerce-case-study/"
SCRIPT_NAME
"/index.php"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
X-LSCACHE
"on,crawler"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1701560001.9831
REQUEST_TIME
1701560001
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
0. Whoops\Handler\PrettyPageHandler