Symfony Exception

ErrorException ViewException ViewException

HTTP 500 Internal Server Error

Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/blocks/list-clients.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/blocks/list-clients.blade.php)

Exceptions 3

Illuminate\View\ ViewException

Show exception properties
Illuminate\View\ViewException {#4062
  #severity: E_ERROR
}
  1.         '2560w' => wp_get_attachment_image_url($id'2k')
  2.       );
  3.       $imageData wp_get_attachment_metadata($id);
  4.       $this->ratio $imageData['height'] / $imageData['width'];
  5.       $this->width $imageData['width'];
  6.       $this->height $imageData['height'];
  7.     }
  8.     /**
  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 echo view(app('sage.view'), app('sage.data'))->render(); ?>
include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/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/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/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/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/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

Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/blocks/list-clients.blade.php)

  1.         '2560w' => wp_get_attachment_image_url($id'2k')
  2.       );
  3.       $imageData wp_get_attachment_metadata($id);
  4.       $this->ratio $imageData['height'] / $imageData['width'];
  5.       $this->width $imageData['width'];
  6.       $this->height $imageData['height'];
  7.     }
  8.     /**
  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 data-taxi-view>
  2.     <div class="template-clients">
  3.       <?php echo $__env->make('blocks/cover', [
  4.         'data' => $fields['cover']
  5.       ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.       <?php echo $__env->make('blocks/list-clients', ['data' => $fields['clients']], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  7.       <?php echo $__env->make('partials/footer'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  8.     </div>
  9.   </div>
  10. <?php $__env->stopSection(); ?>
  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 echo view(app('sage.view'), app('sage.data'))->render(); ?>
include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/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/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/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/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php (line 17)
  1.  * @var bool
  2.  */
  3. define'WP_USE_THEMES'true );
  4. /** Loads the WordPress Environment and Template */
  5. require __DIR__ '/wp-blog-header.php';

ErrorException

Trying to access array offset on value of type bool

  1.         '2560w' => wp_get_attachment_image_url($id'2k')
  2.       );
  3.       $imageData wp_get_attachment_metadata($id);
  4.       $this->ratio $imageData['height'] / $imageData['width'];
  5.       $this->width $imageData['width'];
  6.       $this->height $imageData['height'];
  7.     }
  8.     /**
  1.      * @throws \ErrorException
  2.      */
  3.     public function handleError($level$message$file ''$line 0$context = [])
  4.     {
  5.         try {
  6.             parent::handleError($level$message$file$line$context);
  7.         } catch (Throwable $e) {
  8.             if (! apply_filters('acorn/throw_error_exception'true$e)) {
  9.                 return false;
  10.             }
HandleExceptions->handleError(2, 'Trying to access array offset on value of type bool', '/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php', 83) in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php (line 83)
  1.         '2560w' => wp_get_attachment_image_url($id'2k')
  2.       );
  3.       $imageData wp_get_attachment_metadata($id);
  4.       $this->ratio $imageData['height'] / $imageData['width'];
  5.       $this->width $imageData['width'];
  6.       $this->height $imageData['height'];
  7.     }
  8.     /**
Image->__construct(null, '20vw', '', null, false, 'cover')
  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="list-clients-work absolute-full flex flex-col gap-y-container">
  2.               <div class="relative w-full h-0 pt-[61%] rounded-6 overflow-hidden">
  3.                 <?php $__currentLoopData $works$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $work): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
  4.                   <div class="list-clients-el absolute-full" data-href="<?php echo e(get_the_permalink($work)); ?>">
  5.                     <?php if (isset($component)) { $__componentOriginalcf1fde6bef2907c23498101ce01c0f3f2594e0bd $component; } ?>
  6. <?php $component App\View\Components\Image::resolve(['id' => get_field('thumbnail'$work),'maxWidth' => '20vw'] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
  7. <?php $component->withName('image'); ?>
  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\Image::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.   <div data-taxi-view>
  2.     <div class="template-clients">
  3.       <?php echo $__env->make('blocks/cover', [
  4.         'data' => $fields['cover']
  5.       ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.       <?php echo $__env->make('blocks/list-clients', ['data' => $fields['clients']], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  7.       <?php echo $__env->make('partials/footer'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  8.     </div>
  9.   </div>
  10. <?php $__env->stopSection(); ?>
  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 echo view(app('sage.view'), app('sage.data'))->render(); ?>
include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/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/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/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/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php') in /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/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 3

[3/3] ViewException
Illuminate\View\ViewException:
Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/blocks/list-clients.blade.php) (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/blocks/list-clients.blade.php)

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php:83
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 2)
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/bfa95bd5df58406115a274b0609ce5e086ef9681.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/template-clients.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php:1)
  at include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php:106)
  at require_once('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php:19)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php:17)                
[2/3] ViewException
Illuminate\View\ViewException:
Trying to access array offset on value of type bool (View: /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/blocks/list-clients.blade.php)

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php:83
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 4)
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/c2f3e6258272825739599b00c6d293feccb784c1.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)', 'data' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/blocks/list-clients.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)', 'data' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/bfa95bd5df58406115a274b0609ce5e086ef9681.php:7)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/bfa95bd5df58406115a274b0609ce5e086ef9681.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/bfa95bd5df58406115a274b0609ce5e086ef9681.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/bfa95bd5df58406115a274b0609ce5e086ef9681.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/template-clients.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php:1)
  at include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php:106)
  at require_once('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php:19)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php:17)                
[1/3] ErrorException
ErrorException:
Trying to access array offset on value of type bool

  at /home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php:83
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'Trying to access array offset on value of type bool', '/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php', 83, array())
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:49)
  at Roots\Acorn\Bootstrap\HandleExceptions->handleError(2, 'Trying to access array offset on value of type bool', '/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php', 83)
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/app/View/Components/Image.php:83)
  at App\View\Components\Image->__construct(null, '20vw', '', null, false, 'cover')
  at ReflectionClass->newInstanceArgs(array(null, '20vw', '', null, false, 'cover'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/container/Container.php:929)
  at Illuminate\Container\Container->build('App\\View\\Components\\Image')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/container/Container.php:770)
  at Illuminate\Container\Container->resolve('App\\View\\Components\\Image', array('id' => null, 'maxWidth' => '20vw'), true)
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:856)
  at Illuminate\Foundation\Application->resolve('App\\View\\Components\\Image', array('id' => null, 'maxWidth' => '20vw'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/container/Container.php:706)
  at Illuminate\Container\Container->make('App\\View\\Components\\Image', array('id' => null, 'maxWidth' => '20vw'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/roots/acorn/src/Illuminate/Foundation/Application.php:841)
  at Illuminate\Foundation\Application->make('App\\View\\Components\\Image', array('id' => null, 'maxWidth' => '20vw'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Component.php:105)
  at Illuminate\View\Component::resolve(array('id' => null, 'maxWidth' => '20vw'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/c2f3e6258272825739599b00c6d293feccb784c1.php:52)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/c2f3e6258272825739599b00c6d293feccb784c1.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/c2f3e6258272825739599b00c6d293feccb784c1.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)', 'data' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/c2f3e6258272825739599b00c6d293feccb784c1.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)', 'data' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/blocks/list-clients.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)', 'data' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/bfa95bd5df58406115a274b0609ce5e086ef9681.php:7)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/bfa95bd5df58406115a274b0609ce5e086ef9681.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/bfa95bd5df58406115a274b0609ce5e086ef9681.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/cache/acorn/framework/views/bfa95bd5df58406115a274b0609ce5e086ef9681.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/resources/views/template-clients.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'debug' => false, 'fields' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'cover' => array('title' => 'Clients', 'content' => '<p data-start="45" data-end="243">Whether it’s a small business or a large company, we put the same energy into every project. This diversity inspires us, pushes us to learn, adapt, and find unique solutions.</p><p data-start="245" data-end="487">We are proud of the brands we create with our clients — and even prouder of the trusting relationships we build along the way. Together, we bring to life projects that truly reflect who they are.</p>', 'has_gallery' => false, 'gallery' => false), 'clients' => array('suptitle' => array('hn' => 'div', 'text-left' => 'Our clients', 'text-right' => 'More than 30'))), 'menus' => array('primary' => array(array('title' => 'Home', 'url' => 'https://iconiste.studio/en/', 'target' => '', 'fields' => false), array('title' => 'Work', 'url' => 'https://iconiste.studio/en/works-2/', 'target' => '', 'fields' => false), array('title' => 'Studio', 'url' => 'https://iconiste.studio/en/studio-2/', 'target' => '', 'fields' => false), array('title' => 'Clients', 'url' => 'https://iconiste.studio/en/clients-2/', 'target' => '', 'fields' => false), array('title' => 'Contact', 'url' => 'https://iconiste.studio/en/contact-2/', 'target' => '', 'fields' => false)), 'footer' => array(array('title' => 'Cookie policy', 'url' => 'https://iconiste.studio/en/cookie-policy-2/', 'target' => '', 'fields' => false))), 'options' => array('debug' => false, 'footer' => array('logo' => false, 'video' => true, 'videos' => array(array('video_webm' => array('ID' => 1393, 'id' => 1393, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.webm', 'filesize' => 116306, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:03', 'modified' => '2025-08-22 09:27:03', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1394, 'id' => 1394, 'title' => 'Iconiste Logo test website 3', 'filename' => 'Iconiste-Logo-test-website-3.mov', 'filesize' => 5899226, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-3.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-3-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-3-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 09:27:22', 'modified' => '2025-08-22 09:27:22', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616))), 'address' => 'Rue Côtes de Montbenon 6<br />
CH-1003 Lausanne', 'google_map' => 'https://share.google/nedbuZkeTTcAI2wIb', 'email' => 'hello@iconiste.studio', 'phone' => '+41 21 601 02 90', 'socials' => array(array('name' => 'LinkedIn', 'url' => 'https://linkedin.com'), array('name' => 'Instagram', 'url' => 'https://instagram.com')), 'copyright' => '© Iconiste sàrl'), 'google_tag_manager' => '', 'header' => array('logo' => false, 'video' => true, 'video_webm' => array('ID' => 1407, 'id' => 1407, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.webm', 'filesize' => 174703, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.webm', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:27', 'modified' => '2025-08-22 12:23:27', 'menu_order' => 0, 'mime_type' => 'video/webm', 'type' => 'video', 'subtype' => 'webm', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616), 'video_mov' => array('ID' => 1408, 'id' => 1408, 'title' => 'Iconiste Logo test website white', 'filename' => 'Iconiste-Logo-test-website-white.mov', 'filesize' => 8844018, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/08/Iconiste-Logo-test-website-white.mov', 'link' => 'https://iconiste.studio/iconiste-logo-test-website-white-2/', 'alt' => '', 'author' => '7', 'description' => '', 'caption' => '', 'name' => 'iconiste-logo-test-website-white-2', 'status' => 'inherit', 'uploaded_to' => 0, 'date' => '2025-08-22 12:23:40', 'modified' => '2025-08-22 12:23:40', 'menu_order' => 0, 'mime_type' => 'video/quicktime', 'type' => 'video', 'subtype' => 'quicktime', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 1886, 'height' => 616)), 'linkedin_id' => '', 'loader-text-left' => ' ', 'loader-text-right' => ' ', 'loader-words' => array(array('word' => 'Branding'), array('word' => 'Strategy'), array('word' => 'Communication'), array('word' => 'Advertising'), array('word' => 'Graphic Design')), 'p404-image' => 1626, 'p404-type' => 'image', 'p404-video' => array('ID' => 40, 'id' => 40, 'title' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'filename' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'filesize' => 4776362, 'url' => 'https://iconiste.studio/wp-content/uploads/2025/04/1b23b7536c3f0d75e574443335ad89fe22a7ee46.mp4', 'link' => 'https://iconiste.studio/accueil/1b23b7536c3f0d75e574443335ad89fe22a7ee46/', 'alt' => '', 'author' => '3', 'description' => '', 'caption' => '', 'name' => '1b23b7536c3f0d75e574443335ad89fe22a7ee46', 'status' => 'inherit', 'uploaded_to' => 4, 'date' => '2025-04-05 14:19:47', 'modified' => '2025-04-05 14:19:47', 'menu_order' => 0, 'mime_type' => 'video/mp4', 'type' => 'video', 'subtype' => 'mp4', 'icon' => 'https://iconiste.studio/wp-includes/images/media/video.png', 'width' => 3444, 'height' => 1940), 'page-works' => 1417, 'protected' => false, 'roles' => array(array('role' => 'Creative Director'), array('role' => 'Client Manager'), array('role' => 'Project Manager'), array('role' => 'Art Director'), array('role' => 'Graphic Designer'), array('role' => 'Production Agency'), array('role' => 'Junior Art Director'))), 'site_id' => 'iconiste', 'primary_color' => 'rgb(255, 85, 51)'))
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php:1)
  at include('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-content/themes/gl/index.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php:106)
  at require_once('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-includes/template-loader.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php:19)
  at require('/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/wp-blog-header.php')
     (/home/clients/9d1a6cebcf52b7e0e4b7325abd6dcd64/sites/iconiste/index.php:17)