Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract($_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $this->shouldReturnJson($request$e)
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Map the exception using a registered mapper if possible.
  9.      *
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'Facade\\Ignition\\Exceptions\\ViewException: View [pages.base.footer] not found. (View: /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/resources/views/errors/404.blade.php) in file /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php on line 137#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php(79): Illuminate\\View\\FileViewFinder-&gt;findInPaths(\'pages.base.foot...\', Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/Factory.php(138): Illuminate\\View\\FileViewFinder-&gt;find(\'pages.base.foot...\')#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/resources/views/errors/404.blade.php(212): Illuminate\\View\\Factory-&gt;make(\'pages.base.foot...\', Array)#3 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(107): require(\'/home/cp2042939...\')#4 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(108): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()#5 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem-&gt;getRequire(\'/home/cp2042939...\', Array)#6 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php(69): Illuminate\\View\\Engines\\PhpEngine-&gt;evaluatePath(\'/home/cp2042939...\', Array)#7 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(61): Livewire\\CompilerEngineForIgnition-&gt;evaluatePath(\'/home/cp2042939...\', Array)#8 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php(37): Illuminate\\View\\Engines\\CompilerEngine-&gt;get(\'/home/cp2042939...\', Array)#9 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php(35): Facade\\Ignition\\Views\\Engines\\CompilerEngine-&gt;get(\'/home/cp2042939...\', Array)#10 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/View.php(139): Livewire\\CompilerEngineForIgnition-&gt;get(\'/home/cp2042939...\', Array)#11 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/View.php(122): Illuminate\\View\\View-&gt;getContents()#12 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/View.php(91): Illuminate\\View\\View-&gt;renderContents()#13 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Response.php(69): Illuminate\\View\\View-&gt;render()#14 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response-&gt;setContent(Object(Illuminate\\View\\View))#15 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/ResponseFactory.php(55): Illuminate\\Http\\Response-&gt;__construct(Object(Illuminate\\View\\View), 404, Array)#16 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/ResponseFactory.php(85): Illuminate\\Routing\\ResponseFactory-&gt;make(Object(Illuminate\\View\\View), 404, Array)#17 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(585): Illuminate\\Routing\\ResponseFactory-&gt;view(\'errors::404\', Array, 404, Array)#18 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(490): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderHttpException(Object(Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException))#19 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(356): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException))#20 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException))#21 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(130): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException))#22 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/livewire/livewire/src/DisableBrowserCache.php(19): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#23 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Livewire\\DisableBrowserCache-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#24 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#25 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#26 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#27 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#28 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#29 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#30 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#31 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#32 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#33 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#34 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#35 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#36 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#37 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#38 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#39 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#40 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#41 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#42 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://le-zo.com/_ignition/share-report', 'title' => '🧨 View [pages.base.footer] not found. (View: /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/resources/views/errors/404.blade.php)', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(array('class' => 'Facade\\IgnitionContracts\\BaseSolution', 'title' => 'pages.base.footer was not found.', 'description' => 'Did you mean `home.base.footer`?', 'links' => array(), 'is_runnable' => false, 'run_button_text' => '', 'run_parameters' => array(), 'action_description' => '', 'execute_endpoint' => 'https://le-zo.com/_ignition/execute-solution')), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '8.83.26', 'language_version' => '7.4.33', 'exception_class' => 'InvalidArgumentException', 'seen_at' => 1711620927, 'message' => 'View [pages.base.footer] not found. (View: /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/resources/views/errors/404.blade.php)', 'glows' => array(), 'solutions' => array(array('class' => 'Facade\\IgnitionContracts\\BaseSolution', 'title' => 'pages.base.footer was not found.', 'description' => 'Did you mean `home.base.footer`?', 'links' => array(), 'action_description' => null, 'is_runnable' => false)), 'stacktrace' => array(array('line_number' => 137, 'method' => 'findInPaths', 'class' => 'Illuminate\\View\\FileViewFinder', 'code_snippet' => array('     * @param  array  $paths', '     * @return string', '     *', '     * @throws \\InvalidArgumentException', '     */', '    protected function findInPaths($name, $paths)', '    {', '        foreach ((array) $paths as $path) {', '            foreach ($this->getPossibleViewFiles($name) as $file) {', '                if ($this->files->exists($viewPath = $path.\'/\'.$file)) {', '                    return $viewPath;', '                }', '            }', '        }', '', '        throw new InvalidArgumentException("View [{$name}] not found.");', '    }', '', '    /**', '     * Get an array of possible view files.', '     *', '     * @param  string  $name', '     * @return array', '     */', '    protected function getPossibleViewFiles($name)', '    {', '        return array_map(function ($extension) use ($name) {', '            return str_replace(\'.\', \'/\', $name).\'.\'.$extension;', '        }, $this->extensions);', '    }', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php', 'is_application_frame' => false), array('line_number' => 79, 'method' => 'find', 'class' => 'Illuminate\\View\\FileViewFinder', 'code_snippet' => array('     * Get the fully qualified location of the view.', '     *', '     * @param  string  $name', '     * @return string', '     */', '    public function find($name)', '    {', '        if (isset($this->views[$name])) {', '            return $this->views[$name];', '        }', '', '        if ($this->hasHintInformation($name = trim($name))) {', '            return $this->views[$name] = $this->findNamespacedView($name);', '        }', '', '        return $this->views[$name] = $this->findInPaths($name, $this->paths);', '    }', '', '    /**', '     * Get the path to a template with a named path.', '     *', '     * @param  string  $name', '     * @return string', '     */', '    protected function findNamespacedView($name)', '    {', '        [$namespace, $view] = $this->parseNamespaceSegments($name);', '', '        return $this->findInPaths($view, $this->hints[$namespace]);', '    }', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php', 'is_application_frame' => false), array('line_number' => 138, 'method' => 'make', 'class' => 'Illuminate\\View\\Factory', 'code_snippet' => array('            $this->callCreator($view);', '        });', '    }', '', '    /**', '     * Get the evaluated view contents for the given view.', '     *', '     * @param  string  $view', '     * @param  \\Illuminate\\Contracts\\Support\\Arrayable|array  $data', '     * @param  array  $mergeData', '     * @return \\Illuminate\\Contracts\\View\\View', '     */', '    public function make($view, $data = [], $mergeData = [])', '    {', '        $path = $this->finder->find(', '            $view = $this->normalizeName($view)', '        );', '', '        // Next, we will create the view instance and call the view creator for the view', '        // which can set any data, etc. Then we will return the view instance back to', '        // the caller for rendering or performing other view manipulations on this.', '        $data = array_merge($mergeData, $this->parseData($data));', '', '        return tap($this->viewInstance($view, $path, $data), function ($view) {', '            $this->callCreator($view);', '        });', '    }', '', '    /**', '     * Get the first view that actually exists from the given list.', '     *'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/Factory.php', 'is_application_frame' => false), array('line_number' => 212, 'method' => 'require', 'class' => null, 'code_snippet' => array('                                <a href="#"><i class="fa fa-instagram"></i></a>', '                            </li>', '                            <li>', '                                <a href="#"><i class="fa fa-pinterest"></i></a>', '                            </li>', '                        </ul>', '                    </div>', '                </div>', '            </div>', '            <!-- /row -->', '        </div>', '        <!-- /container -->', '    </div>', '    <!-- /NEWSLETTER -->', '', '    <!-- ##### Nav Area Start ##### -->', '    @include(\'pages.base.footer\')', '    <!-- ##### Nav Area End ##### -->', '', '', '		<!-- jQuery Plugins -->', '		<script src="{{asset(\'agridigital/public/AssetHome/js/jquery.min.js\')}}"></script>', '		<script src="{{asset(\'agridigital/public/AssetHome/js/bootstrap.min.js\')}}"></script>', '		<script src="{{asset(\'agridigital/public/AssetHome/js/slick.min.js\')}}"></script>', '		<script src="{{asset(\'agridigital/public/AssetHome/js/nouislider.min.js\')}}"></script>', '		<script src="{{asset(\'agridigital/public/AssetHome/js/jquery.zoom.min.js\')}}"></script>', '		<script src="{{asset(\'agridigital/public/AssetHome/js/main.js\')}}"></script>', '', '	</body>', '</html>', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/resources/views/errors/404.blade.php', 'is_application_frame' => true), array('line_number' => 107, 'method' => 'Illuminate\\Filesystem\\{closure}', 'class' => 'Illuminate\\Filesystem\\Filesystem', 'code_snippet' => array('     * @param  string  $path', '     * @param  array  $data', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Contracts\\Filesystem\\FileNotFoundException', '     */', '    public function getRequire($path, array $data = [])', '    {', '        if ($this->isFile($path)) {', '            $__path = $path;', '            $__data = $data;', '', '            return (static function () use ($__path, $__data) {', '                extract($__data, EXTR_SKIP);', '', '                return require $__path;', '            })();', '        }', '', '        throw new FileNotFoundException("File does not exist at path {$path}.");', '    }', '', '    /**', '     * Require the given file once.', '     *', '     * @param  string  $path', '     * @param  array  $data', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Contracts\\Filesystem\\FileNotFoundException', '     */'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php', 'is_application_frame' => false), array('line_number' => 108, 'method' => 'getRequire', 'class' => 'Illuminate\\Filesystem\\Filesystem', 'code_snippet' => array('     * @param  array  $data', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Contracts\\Filesystem\\FileNotFoundException', '     */', '    public function getRequire($path, array $data = [])', '    {', '        if ($this->isFile($path)) {', '            $__path = $path;', '            $__data = $data;', '', '            return (static function () use ($__path, $__data) {', '                extract($__data, EXTR_SKIP);', '', '                return require $__path;', '            })();', '        }', '', '        throw new FileNotFoundException("File does not exist at path {$path}.");', '    }', '', '    /**', '     * Require the given file once.', '     *', '     * @param  string  $path', '     * @param  array  $data', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Contracts\\Filesystem\\FileNotFoundException', '     */', '    public function requireOnce($path, array $data = [])'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php', 'is_application_frame' => false), array('line_number' => 58, 'method' => 'evaluatePath', 'class' => 'Illuminate\\View\\Engines\\PhpEngine', 'code_snippet' => array('     *', '     * @param  string  $path', '     * @param  array  $data', '     * @return string', '     */', '    protected function evaluatePath($path, $data)', '    {', '        $obLevel = ob_get_level();', '', '        ob_start();', '', '        // We\'ll evaluate the contents of the view inside a try/catch block so we can', '        // flush out any stray output that might get out before an error occurs or', '        // an exception is thrown. This prevents any partial views from leaking.', '        try {', '            $this->files->getRequire($path, $data);', '        } catch (Throwable $e) {', '            $this->handleViewException($e, $obLevel);', '        }', '', '        return ltrim(ob_get_clean());', '    }', '', '    /**', '     * Handle a view exception.', '     *', '     * @param  \\Throwable  $e', '     * @param  int  $obLevel', '     * @return void', '     *', '     * @throws \\Throwable'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php', 'is_application_frame' => false), array('line_number' => 69, 'method' => 'evaluatePath', 'class' => 'Livewire\\CompilerEngineForIgnition', 'code_snippet' => array('        }', '', '        // Once we have the path to the compiled file, we will evaluate the paths with', '        // typical PHP just like any other templates. We also keep a stack of views', '        // which have been rendered for right exception messages to be generated.', '        $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);', '', '        array_pop($this->lastCompiled);', '', '        return $results;', '    }', '', '    protected function evaluatePath($__path, $__data)', '    {', '        if (! $this->isRenderingLivewireComponent()) {', '            return parent::evaluatePath($__path, $__data);', '        }', '', '        $obLevel = ob_get_level();', '', '        ob_start();', '', '        // We\'ll evaluate the contents of the view inside a try/catch block so we can', '        // flush out any stray output that might get out before an error occurs or', '        // an exception is thrown. This prevents any partial views from leaking.', '        try {', '            $component = end($this->livewireComponents);', '            \\Closure::bind(function () use ($__path, $__data) {', '                extract($__data, EXTR_SKIP);', '                include $__path;', '            }, $component, $component)();'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php', 'is_application_frame' => false), array('line_number' => 61, 'method' => 'get', 'class' => 'Illuminate\\View\\Engines\\CompilerEngine', 'code_snippet' => array('     */', '    public function get($path, array $data = [])', '    {', '        $this->lastCompiled[] = $path;', '', '        // If this given view has expired, which means it has simply been edited since', '        // it was last compiled, we will re-compile the views so we can evaluate a', '        // fresh copy of the view. We\'ll pass the compiler the path of the view.', '        if ($this->compiler->isExpired($path)) {', '            $this->compiler->compile($path);', '        }', '', '        // Once we have the path to the compiled file, we will evaluate the paths with', '        // typical PHP just like any other templates. We also keep a stack of views', '        // which have been rendered for right exception messages to be generated.', '        $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);', '', '        array_pop($this->lastCompiled);', '', '        return $results;', '    }', '', '    /**', '     * Handle a view exception.', '     *', '     * @param  \\Throwable  $e', '     * @param  int  $obLevel', '     * @return void', '     *', '     * @throws \\Throwable', '     */'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php', 'is_application_frame' => false), array('line_number' => 37, 'method' => 'get', 'class' => 'Facade\\Ignition\\Views\\Engines\\CompilerEngine', 'code_snippet' => array('', '    /**', '     * Get the evaluated contents of the view.', '     *', '     * @param string $path', '     * @param array $data', '     *', '     * @return string', '     */', '    public function get($path, array $data = [])', '    {', '        $this->currentPath = $path;', '', '        $this->collectViewData($path, $data);', '', '        return parent::get($path, $data);', '    }', '', '    /**', '     * Handle a view exception.', '     *', '     * @param \\Throwable $baseException', '     * @param int $obLevel', '     *', '     * @return void', '     *', '     * @throws \\Throwable', '     */', '    protected function handleViewException(Throwable $baseException, $obLevel)', '    {', '        while (ob_get_level() > $obLevel) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/Views/Engines/CompilerEngine.php', 'is_application_frame' => false), array('line_number' => 35, 'method' => 'get', 'class' => 'Livewire\\CompilerEngineForIgnition', 'code_snippet' => array('        $this->livewireComponents[] = $component;', '    }', '', '    public function endLivewireRendering()', '    {', '        array_pop($this->livewireComponents);', '    }', '', '    public function isRenderingLivewireComponent()', '    {', '        return ! empty($this->livewireComponents);', '    }', '', '    public function get($path, array $data = [])', '    {', '        if (! $this->isRenderingLivewireComponent()) return parent::get($path, $data);', '', '        $this->lastCompiled[] = $path;', '', '        // If this given view has expired, which means it has simply been edited since', '        // it was last compiled, we will re-compile the views so we can evaluate a', '        // fresh copy of the view. We\'ll pass the compiler the path of the view.', '        if ($this->compiler->isExpired($path)) {', '            // @note: this is the only modification of this overladed Laravel method:', '            // We are globally setting the current view path being compiled for', '            // reference from the @livewire Blade directive.', '            LivewireManager::$currentCompilingViewPath = $path;', '            LivewireManager::$currentCompilingChildCounter = 0;', '', '            $this->compiler->compile($path);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php', 'is_application_frame' => false), array('line_number' => 139, 'method' => 'getContents', 'class' => 'Illuminate\\View\\View', 'code_snippet' => array('        // Once we\'ve finished rendering the view, we\'ll decrement the render count', '        // so that each sections get flushed out next time a view is created and', '        // no old sections are staying around in the memory of an environment.', '        $this->factory->decrementRender();', '', '        return $contents;', '    }', '', '    /**', '     * Get the evaluated contents of the view.', '     *', '     * @return string', '     */', '    protected function getContents()', '    {', '        return $this->engine->get($this->path, $this->gatherData());', '    }', '', '    /**', '     * Get the data bound to the view instance.', '     *', '     * @return array', '     */', '    public function gatherData()', '    {', '        $data = array_merge($this->factory->getShared(), $this->data);', '', '        foreach ($data as $key => $value) {', '            if ($value instanceof Renderable) {', '                $data[$key] = $value->render();', '            }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/View.php', 'is_application_frame' => false), array('line_number' => 122, 'method' => 'renderContents', 'class' => 'Illuminate\\View\\View', 'code_snippet' => array('', '    /**', '     * Get the contents of the view instance.', '     *', '     * @return string', '     */', '    protected function renderContents()', '    {', '        // We will keep track of the amount of views being rendered so we can flush', '        // the section after the complete rendering operation is done. This will', '        // clear out the sections for any separate views that may be rendered.', '        $this->factory->incrementRender();', '', '        $this->factory->callComposer($this);', '', '        $contents = $this->getContents();', '', '        // Once we\'ve finished rendering the view, we\'ll decrement the render count', '        // so that each sections get flushed out next time a view is created and', '        // no old sections are staying around in the memory of an environment.', '        $this->factory->decrementRender();', '', '        return $contents;', '    }', '', '    /**', '     * Get the evaluated contents of the view.', '     *', '     * @return string', '     */', '    protected function getContents()'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/View.php', 'is_application_frame' => false), array('line_number' => 91, 'method' => 'render', 'class' => 'Illuminate\\View\\View', 'code_snippet' => array('', '        $this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;', '    }', '', '    /**', '     * Get the string contents of the view.', '     *', '     * @param  callable|null  $callback', '     * @return string', '     *', '     * @throws \\Throwable', '     */', '    public function render(callable $callback = null)', '    {', '        try {', '            $contents = $this->renderContents();', '', '            $response = isset($callback) ? $callback($this, $contents) : null;', '', '            // Once we have the contents of the view, we will flush the sections if we are', '            // done rendering all views so that there is nothing left hanging over when', '            // another view gets rendered in the future by the application developer.', '            $this->factory->flushStateIfDoneRendering();', '', '            return ! is_null($response) ? $response : $contents;', '        } catch (Throwable $e) {', '            $this->factory->flushState();', '', '            throw $e;', '        }', '    }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/View.php', 'is_application_frame' => false), array('line_number' => 69, 'method' => 'setContent', 'class' => 'Illuminate\\Http\\Response', 'code_snippet' => array('        // from routes that will be automatically transformed to their JSON form.', '        if ($this->shouldBeJson($content)) {', '            $this->header(\'Content-Type\', \'application/json\');', '', '            $content = $this->morphToJson($content);', '', '            if ($content === false) {', '                throw new InvalidArgumentException(json_last_error_msg());', '            }', '        }', '', '        // If this content implements the "Renderable" interface then we will call the', '        // render method on the object so we will avoid any "__toString" exceptions', '        // that might be thrown and have their errors obscured by PHP\'s handling.', '        elseif ($content instanceof Renderable) {', '            $content = $content->render();', '        }', '', '        parent::setContent($content);', '', '        return $this;', '    }', '', '    /**', '     * Determine if the given content should be turned into JSON.', '     *', '     * @param  mixed  $content', '     * @return bool', '     */', '    protected function shouldBeJson($content)', '    {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Response.php', 'is_application_frame' => false), array('line_number' => 35, 'method' => '__construct', 'class' => 'Illuminate\\Http\\Response', 'code_snippet' => array('', '    /**', '     * Create a new HTTP response.', '     *', '     * @param  mixed  $content', '     * @param  int  $status', '     * @param  array  $headers', '     * @return void', '     *', '     * @throws \\InvalidArgumentException', '     */', '    public function __construct($content = \'\', $status = 200, array $headers = [])', '    {', '        $this->headers = new ResponseHeaderBag($headers);', '', '        $this->setContent($content);', '        $this->setStatusCode($status);', '        $this->setProtocolVersion(\'1.0\');', '    }', '', '    /**', '     * Set the content on the response.', '     *', '     * @param  mixed  $content', '     * @return $this', '     *', '     * @throws \\InvalidArgumentException', '     */', '    public function setContent($content)', '    {', '        $this->original = $content;'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Response.php', 'is_application_frame' => false), array('line_number' => 55, 'method' => 'make', 'class' => 'Illuminate\\Routing\\ResponseFactory', 'code_snippet' => array('    {', '        $this->view = $view;', '        $this->redirector = $redirector;', '    }', '', '    /**', '     * Create a new response instance.', '     *', '     * @param  mixed  $content', '     * @param  int  $status', '     * @param  array  $headers', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function make($content = \'\', $status = 200, array $headers = [])', '    {', '        return new Response($content, $status, $headers);', '    }', '', '    /**', '     * Create a new "no content" response.', '     *', '     * @param  int  $status', '     * @param  array  $headers', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function noContent($status = 204, array $headers = [])', '    {', '        return $this->make(\'\', $status, $headers);', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/ResponseFactory.php', 'is_application_frame' => false), array('line_number' => 85, 'method' => 'view', 'class' => 'Illuminate\\Routing\\ResponseFactory', 'code_snippet' => array('    /**', '     * Create a new response for a given view.', '     *', '     * @param  string|array  $view', '     * @param  array  $data', '     * @param  int  $status', '     * @param  array  $headers', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function view($view, $data = [], $status = 200, array $headers = [])', '    {', '        if (is_array($view)) {', '            return $this->make($this->view->first($view, $data), $status, $headers);', '        }', '', '        return $this->make($this->view->make($view, $data), $status, $headers);', '    }', '', '    /**', '     * Create a new JSON response instance.', '     *', '     * @param  mixed  $data', '     * @param  int  $status', '     * @param  array  $headers', '     * @param  int  $options', '     * @return \\Illuminate\\Http\\JsonResponse', '     */', '    public function json($data = [], $status = 200, array $headers = [], $options = 0)', '    {', '        return new JsonResponse($data, $status, $headers, $options);', '    }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/ResponseFactory.php', 'is_application_frame' => false), array('line_number' => 585, 'method' => 'renderHttpException', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,', '                \'exception\' => $e,', '            ], $e->getStatusCode(), $e->getHeaders());', '        }', '', '        return $this->convertExceptionToResponse($e);', '    }', '', '    /**', '     * Register the error template hint paths.', '     *', '     * @return void', '     */', '    protected function registerErrorViewPaths()', '    {', '        (new RegisterErrorViewPaths)();', '    }', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 490, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 356, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('                    }', '                }', '            }', '        }', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $this->shouldReturnJson($request, $e)', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Map the exception using a registered mapper if possible.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function mapException(Throwable $e)', '    {', '        foreach ($this->exceptionMap as $class => $mapper) {', '            if (is_a($e, $class)) {', '                return $mapper($e);', '            }', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 130, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        });', '    }', '', '    /**', '     * Get the final piece of the Closure onion.', '     *', '     * @param  \\Closure  $destination', '     * @return \\Closure', '     */', '    protected function prepareDestination(Closure $destination)', '    {', '        return function ($passable) use ($destination) {', '            try {', '                return $destination($passable);', '            } catch (Throwable $e) {', '                return $this->handleException($passable, $e);', '            }', '        };', '    }', '', '    /**', '     * Get a Closure that represents a slice of the application onion.', '     *', '     * @return \\Closure', '     */', '    protected function carry()', '    {', '        return function ($stack, $pipe) {', '            return function ($passable) use ($stack, $pipe) {', '                try {', '                    if (is_callable($pipe)) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 19, 'method' => 'handle', 'class' => 'Livewire\\DisableBrowserCache', 'code_snippet' => array('', 'namespace Livewire;', '', 'use Closure;', 'use Symfony\\Component\\HttpFoundation\\Response;', '', 'class DisableBrowserCache', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $response = $next($request);', '', '        if ($response instanceof Response && Livewire::shouldDisableBackButtonCache()){', '            $response->headers->add([', '                "Pragma" => "no-cache",', '                "Expires" => "Fri, 01 Jan 1990 00:00:00 GMT",', '                "Cache-Control" => "no-cache, must-revalidate, no-store, max-age=0, private",', '            ]);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/livewire/livewire/src/DisableBrowserCache.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 31, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        foreach (static::$skipCallbacks as $callback) {', '            if ($callback($request)) {', '                return $next($request);', '            }', '        }', '', '        return parent::handle($request, $next);', '    }', '', '    /**', '     * Transform the given value.', '     *', '     * @param  string  $key', '     * @param  mixed  $value', '     * @return mixed', '     */', '    protected function transform($key, $value)', '    {', '        return is_string($value) && $value === \'\' ? null : $value;', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 40, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TrimStrings', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        foreach (static::$skipCallbacks as $callback) {', '            if ($callback($request)) {', '                return $next($request);', '            }', '        }', '', '        return parent::handle($request, $next);', '    }', '', '    /**', '     * Transform the given value.', '     *', '     * @param  string  $key', '     * @param  mixed  $value', '     * @return mixed', '     */', '    protected function transform($key, $value)', '    {', '        if (in_array($key, $this->except, true)) {', '            return $value;', '        }', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 86, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance', 'code_snippet' => array('                return response(', '                    $data[\'template\'],', '                    $data[\'status\'] ?? 503,', '                    $this->getHeaders($data)', '                );', '            }', '', '            throw new HttpException(', '                $data[\'status\'] ?? 503,', '                \'Service Unavailable\',', '                null,', '                $this->getHeaders($data)', '            );', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the incoming request has a maintenance mode bypass cookie.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  array  $data', '     * @return bool', '     */', '    protected function hasValidBypassCookie($request, array $data)', '    {', '        return isset($data[\'secret\']) &&', '                $request->cookie(\'laravel_maintenance\') &&', '                MaintenanceModeBypassCookie::isValid(', '                    $request->cookie(\'laravel_maintenance\'),'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 39, 'method' => 'handle', 'class' => 'Illuminate\\Http\\Middleware\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames());', '', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies() ?: config(\'trustedproxy.proxies\');', '', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 142, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 111, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 52, 'method' => '[top]', 'class' => null, 'code_snippet' => array('|--------------------------------------------------------------------------', '|', '| Composer provides a convenient, automatically generated class loader for', '| this application. We just need to utilize it! We\'ll simply require it', '| into the script here so we don\'t need to manually load our classes.', '|', '*/', '', 'require __DIR__.\'/../vendor/autoload.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request using', '| the application\'s HTTP kernel. Then, we will send the response back', '| to this client\'s browser, allowing them to enjoy our application.', '|', '*/', '', '$app = require_once __DIR__.\'/../bootstrap/app.php\';', '', '$kernel = $app->make(Kernel::class);', '', '$response = $kernel->handle(', '    $request = Request::capture()', ')->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://le-zo.com/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/tiktok.com/@dreamdembe', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip'), 'content-length' => array('0'), 'host' => array('le-zo.com'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.201.131.213'), 'via' => array('1.1 web53.lws-hosting.com (Varnish/7.4)'), 'x-target-backend' => array('91.234.195.113'), 'x-forwarded-host' => array('le-zo.com'), 'x-forwarded-port' => array('443'), 'x-forwarded-proto' => array('https'), 'x-forwarded-server' => array('le-zo.com'), 'x-cache-enabled' => array('1'), 'edge-cache-engine' => array('varnish'), 'edge-cache-engine-enable' => array('1'), 'edge-cache-mode' => array('default'), 'x-real-ip' => array('44.201.131.213'), 'x-request-id' => array('1a36823aedd1fe5470af66da26c40155'), 'x-varnish' => array('257262510')), 'cookies' => array(), 'session' => array(), 'route' => array('route' => null, 'routeParameters' => array(), 'controllerAction' => null, 'middleware' => array()), 'user' => array(), 'view' => array('view' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php', 'data' => array()), 'env' => array('laravel_version' => '8.83.26', 'laravel_locale' => 'en', 'laravel_config_cached' => true, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array()), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe', 'application_version' => null, 'tracking_uuid' => '9f7ed82c-46b5-45af-99c6-3f42f83024f6'), 'housekeepingEndpoint' => 'https://le-zo.com/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array(), 'appEnv' => 'local', 'appDebug' => true))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ViewException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ViewException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ViewException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:540)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ViewException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:519)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ViewException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:503)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ViewException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:482)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ViewException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:356)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ViewException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ViewException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php:52)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract($_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $this->shouldReturnJson($request$e)
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Map the exception using a registered mapper if possible.
  9.      *
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 353#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/cp2042939...\', 353, Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include()#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include(\'/home/cp2042939...\')#4 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(568): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(522): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(503): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(482): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(Facade\\Ignition\\Exceptions\\ViewException))#10 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(356): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(Facade\\Ignition\\Exceptions\\ViewException))#11 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(Facade\\Ignition\\Exceptions\\ViewException))#12 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(Facade\\Ignition\\Exceptions\\ViewException))#13 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#14 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#15 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#18 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#19 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#20 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#21 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#22 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#23 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#24 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#25 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#26 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#27 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#28 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#29 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#30 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#31 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://le-zo.com/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '8.83.26', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711620927, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 353, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 568, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 522, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 503, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 482, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    protected function shouldReturnJson($request, Throwable $e)', '    {', '        return $request->expectsJson();', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 356, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('                    }', '                }', '            }', '        }', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $this->shouldReturnJson($request, $e)', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Map the exception using a registered mapper if possible.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function mapException(Throwable $e)', '    {', '        foreach ($this->exceptionMap as $class => $mapper) {', '            if (is_a($e, $class)) {', '                return $mapper($e);', '            }', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 31, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        foreach (static::$skipCallbacks as $callback) {', '            if ($callback($request)) {', '                return $next($request);', '            }', '        }', '', '        return parent::handle($request, $next);', '    }', '', '    /**', '     * Transform the given value.', '     *', '     * @param  string  $key', '     * @param  mixed  $value', '     * @return mixed', '     */', '    protected function transform($key, $value)', '    {', '        return is_string($value) && $value === \'\' ? null : $value;', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 40, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TrimStrings', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        foreach (static::$skipCallbacks as $callback) {', '            if ($callback($request)) {', '                return $next($request);', '            }', '        }', '', '        return parent::handle($request, $next);', '    }', '', '    /**', '     * Transform the given value.', '     *', '     * @param  string  $key', '     * @param  mixed  $value', '     * @return mixed', '     */', '    protected function transform($key, $value)', '    {', '        if (in_array($key, $this->except, true)) {', '            return $value;', '        }', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 86, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance', 'code_snippet' => array('                return response(', '                    $data[\'template\'],', '                    $data[\'status\'] ?? 503,', '                    $this->getHeaders($data)', '                );', '            }', '', '            throw new HttpException(', '                $data[\'status\'] ?? 503,', '                \'Service Unavailable\',', '                null,', '                $this->getHeaders($data)', '            );', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the incoming request has a maintenance mode bypass cookie.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  array  $data', '     * @return bool', '     */', '    protected function hasValidBypassCookie($request, array $data)', '    {', '        return isset($data[\'secret\']) &&', '                $request->cookie(\'laravel_maintenance\') &&', '                MaintenanceModeBypassCookie::isValid(', '                    $request->cookie(\'laravel_maintenance\'),'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 39, 'method' => 'handle', 'class' => 'Illuminate\\Http\\Middleware\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames());', '', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies() ?: config(\'trustedproxy.proxies\');', '', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 142, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 111, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 52, 'method' => '[top]', 'class' => null, 'code_snippet' => array('|--------------------------------------------------------------------------', '|', '| Composer provides a convenient, automatically generated class loader for', '| this application. We just need to utilize it! We\'ll simply require it', '| into the script here so we don\'t need to manually load our classes.', '|', '*/', '', 'require __DIR__.\'/../vendor/autoload.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request using', '| the application\'s HTTP kernel. Then, we will send the response back', '| to this client\'s browser, allowing them to enjoy our application.', '|', '*/', '', '$app = require_once __DIR__.\'/../bootstrap/app.php\';', '', '$kernel = $app->make(Kernel::class);', '', '$response = $kernel->handle(', '    $request = Request::capture()', ')->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://le-zo.com/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/tiktok.com/@dreamdembe', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip'), 'content-length' => array('0'), 'host' => array('le-zo.com'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.201.131.213'), 'via' => array('1.1 web53.lws-hosting.com (Varnish/7.4)'), 'x-target-backend' => array('91.234.195.113'), 'x-forwarded-host' => array('le-zo.com'), 'x-forwarded-port' => array('443'), 'x-forwarded-proto' => array('https'), 'x-forwarded-server' => array('le-zo.com'), 'x-cache-enabled' => array('1'), 'edge-cache-engine' => array('varnish'), 'edge-cache-engine-enable' => array('1'), 'edge-cache-mode' => array('default'), 'x-real-ip' => array('44.201.131.213'), 'x-request-id' => array('1a36823aedd1fe5470af66da26c40155'), 'x-varnish' => array('257262510')), 'cookies' => array(), 'session' => array(), 'route' => array('route' => null, 'routeParameters' => array(), 'controllerAction' => null, 'middleware' => array()), 'user' => array(), 'env' => array('laravel_version' => '8.83.26', 'laravel_locale' => 'en', 'laravel_config_cached' => true, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array()), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe', 'application_version' => null, 'tracking_uuid' => '33f6b9a1-4bcf-4a52-94ba-c616b57f693f'), 'housekeepingEndpoint' => 'https://le-zo.com/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array(), 'appEnv' => 'local', 'appDebug' => true))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:540)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:519)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:503)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:482)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:356)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php:52)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract($_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $this->shouldReturnJson($request$e)
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Map the exception using a registered mapper if possible.
  9.      *
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 353#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/cp2042939...\', 353, Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include()#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include(\'/home/cp2042939...\')#4 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(568): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(522): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(503): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(482): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(356): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#14 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#15 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#16 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#17 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#18 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#19 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#20 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#21 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#22 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#23 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#24 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#25 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#26 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#27 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#28 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://le-zo.com/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '8.83.26', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711620927, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 353, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 568, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 522, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 503, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 482, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    protected function shouldReturnJson($request, Throwable $e)', '    {', '        return $request->expectsJson();', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 356, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('                    }', '                }', '            }', '        }', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $this->shouldReturnJson($request, $e)', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Map the exception using a registered mapper if possible.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function mapException(Throwable $e)', '    {', '        foreach ($this->exceptionMap as $class => $mapper) {', '            if (is_a($e, $class)) {', '                return $mapper($e);', '            }', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 21, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest', 'code_snippet' => array('use Symfony\\Component\\HttpFoundation\\ParameterBag;', '', 'class TransformsRequest', '{', '    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        $this->clean($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Clean the request\'s data.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function clean($request)', '    {', '        $this->cleanParameterBag($request->query);', '', '        if ($request->isJson()) {', '            $this->cleanParameterBag($request->json());', '        } elseif ($request->request !== $request->query) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php', 'is_application_frame' => false), array('line_number' => 40, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\TrimStrings', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     */', '    public function handle($request, Closure $next)', '    {', '        foreach (static::$skipCallbacks as $callback) {', '            if ($callback($request)) {', '                return $next($request);', '            }', '        }', '', '        return parent::handle($request, $next);', '    }', '', '    /**', '     * Transform the given value.', '     *', '     * @param  string  $key', '     * @param  mixed  $value', '     * @return mixed', '     */', '    protected function transform($key, $value)', '    {', '        if (in_array($key, $this->except, true)) {', '            return $value;', '        }', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 86, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance', 'code_snippet' => array('                return response(', '                    $data[\'template\'],', '                    $data[\'status\'] ?? 503,', '                    $this->getHeaders($data)', '                );', '            }', '', '            throw new HttpException(', '                $data[\'status\'] ?? 503,', '                \'Service Unavailable\',', '                null,', '                $this->getHeaders($data)', '            );', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the incoming request has a maintenance mode bypass cookie.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  array  $data', '     * @return bool', '     */', '    protected function hasValidBypassCookie($request, array $data)', '    {', '        return isset($data[\'secret\']) &&', '                $request->cookie(\'laravel_maintenance\') &&', '                MaintenanceModeBypassCookie::isValid(', '                    $request->cookie(\'laravel_maintenance\'),'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 39, 'method' => 'handle', 'class' => 'Illuminate\\Http\\Middleware\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames());', '', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies() ?: config(\'trustedproxy.proxies\');', '', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 142, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 111, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 52, 'method' => '[top]', 'class' => null, 'code_snippet' => array('|--------------------------------------------------------------------------', '|', '| Composer provides a convenient, automatically generated class loader for', '| this application. We just need to utilize it! We\'ll simply require it', '| into the script here so we don\'t need to manually load our classes.', '|', '*/', '', 'require __DIR__.\'/../vendor/autoload.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request using', '| the application\'s HTTP kernel. Then, we will send the response back', '| to this client\'s browser, allowing them to enjoy our application.', '|', '*/', '', '$app = require_once __DIR__.\'/../bootstrap/app.php\';', '', '$kernel = $app->make(Kernel::class);', '', '$response = $kernel->handle(', '    $request = Request::capture()', ')->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://le-zo.com/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/tiktok.com/@dreamdembe', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip'), 'content-length' => array('0'), 'host' => array('le-zo.com'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.201.131.213'), 'via' => array('1.1 web53.lws-hosting.com (Varnish/7.4)'), 'x-target-backend' => array('91.234.195.113'), 'x-forwarded-host' => array('le-zo.com'), 'x-forwarded-port' => array('443'), 'x-forwarded-proto' => array('https'), 'x-forwarded-server' => array('le-zo.com'), 'x-cache-enabled' => array('1'), 'edge-cache-engine' => array('varnish'), 'edge-cache-engine-enable' => array('1'), 'edge-cache-mode' => array('default'), 'x-real-ip' => array('44.201.131.213'), 'x-request-id' => array('1a36823aedd1fe5470af66da26c40155'), 'x-varnish' => array('257262510')), 'cookies' => array(), 'session' => array(), 'route' => array('route' => null, 'routeParameters' => array(), 'controllerAction' => null, 'middleware' => array()), 'user' => array(), 'env' => array('laravel_version' => '8.83.26', 'laravel_locale' => 'en', 'laravel_config_cached' => true, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array()), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe', 'application_version' => null, 'tracking_uuid' => '2433a665-2bfa-4b3c-a0e5-02aa30f68268'), 'housekeepingEndpoint' => 'https://le-zo.com/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array(), 'appEnv' => 'local', 'appDebug' => true))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:540)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:519)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:503)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:482)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:356)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php:52)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract($_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $this->shouldReturnJson($request$e)
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Map the exception using a registered mapper if possible.
  9.      *
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 353#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/cp2042939...\', 353, Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include()#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include(\'/home/cp2042939...\')#4 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(568): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(522): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(503): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(482): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(356): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#14 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#15 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#16 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#17 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#18 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#19 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#20 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#21 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#22 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#23 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#24 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#25 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://le-zo.com/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '8.83.26', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711620927, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 353, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 568, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 522, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 503, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 482, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    protected function shouldReturnJson($request, Throwable $e)', '    {', '        return $request->expectsJson();', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 356, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('                    }', '                }', '            }', '        }', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $this->shouldReturnJson($request, $e)', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Map the exception using a registered mapper if possible.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function mapException(Throwable $e)', '    {', '        foreach ($this->exceptionMap as $class => $mapper) {', '            if (is_a($e, $class)) {', '                return $mapper($e);', '            }', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 27, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException', '     */', '    public function handle($request, Closure $next)', '    {', '        $max = $this->getPostMaxSize();', '', '        if ($max > 0 && $request->server(\'CONTENT_LENGTH\') > $max) {', '            throw new PostTooLargeException;', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine the server \'post_max_size\' as bytes.', '     *', '     * @return int', '     */', '    protected function getPostMaxSize()', '    {', '        if (is_numeric($postMaxSize = ini_get(\'post_max_size\'))) {', '            return (int) $postMaxSize;', '        }', '', '        $metric = strtoupper(substr($postMaxSize, -1));', '        $postMaxSize = (int) $postMaxSize;'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 86, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance', 'code_snippet' => array('                return response(', '                    $data[\'template\'],', '                    $data[\'status\'] ?? 503,', '                    $this->getHeaders($data)', '                );', '            }', '', '            throw new HttpException(', '                $data[\'status\'] ?? 503,', '                \'Service Unavailable\',', '                null,', '                $this->getHeaders($data)', '            );', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the incoming request has a maintenance mode bypass cookie.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  array  $data', '     * @return bool', '     */', '    protected function hasValidBypassCookie($request, array $data)', '    {', '        return isset($data[\'secret\']) &&', '                $request->cookie(\'laravel_maintenance\') &&', '                MaintenanceModeBypassCookie::isValid(', '                    $request->cookie(\'laravel_maintenance\'),'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 39, 'method' => 'handle', 'class' => 'Illuminate\\Http\\Middleware\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames());', '', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies() ?: config(\'trustedproxy.proxies\');', '', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 142, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 111, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 52, 'method' => '[top]', 'class' => null, 'code_snippet' => array('|--------------------------------------------------------------------------', '|', '| Composer provides a convenient, automatically generated class loader for', '| this application. We just need to utilize it! We\'ll simply require it', '| into the script here so we don\'t need to manually load our classes.', '|', '*/', '', 'require __DIR__.\'/../vendor/autoload.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request using', '| the application\'s HTTP kernel. Then, we will send the response back', '| to this client\'s browser, allowing them to enjoy our application.', '|', '*/', '', '$app = require_once __DIR__.\'/../bootstrap/app.php\';', '', '$kernel = $app->make(Kernel::class);', '', '$response = $kernel->handle(', '    $request = Request::capture()', ')->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://le-zo.com/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/tiktok.com/@dreamdembe', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip'), 'content-length' => array('0'), 'host' => array('le-zo.com'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.201.131.213'), 'via' => array('1.1 web53.lws-hosting.com (Varnish/7.4)'), 'x-target-backend' => array('91.234.195.113'), 'x-forwarded-host' => array('le-zo.com'), 'x-forwarded-port' => array('443'), 'x-forwarded-proto' => array('https'), 'x-forwarded-server' => array('le-zo.com'), 'x-cache-enabled' => array('1'), 'edge-cache-engine' => array('varnish'), 'edge-cache-engine-enable' => array('1'), 'edge-cache-mode' => array('default'), 'x-real-ip' => array('44.201.131.213'), 'x-request-id' => array('1a36823aedd1fe5470af66da26c40155'), 'x-varnish' => array('257262510')), 'cookies' => array(), 'session' => array(), 'route' => array('route' => null, 'routeParameters' => array(), 'controllerAction' => null, 'middleware' => array()), 'user' => array(), 'env' => array('laravel_version' => '8.83.26', 'laravel_locale' => 'en', 'laravel_config_cached' => true, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array()), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe', 'application_version' => null, 'tracking_uuid' => '13f16415-45b2-4556-89c1-397daac19e0f'), 'housekeepingEndpoint' => 'https://le-zo.com/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array(), 'appEnv' => 'local', 'appDebug' => true))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:540)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:519)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:503)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:482)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:356)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php:52)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract($_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $this->shouldReturnJson($request$e)
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Map the exception using a registered mapper if possible.
  9.      *
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 353#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/cp2042939...\', 353, Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include()#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include(\'/home/cp2042939...\')#4 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(568): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(522): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(503): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(482): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(356): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#14 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#15 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#16 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#17 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#18 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#19 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#20 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#21 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#22 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#23 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://le-zo.com/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '8.83.26', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711620927, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 353, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 568, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 522, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 503, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 482, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    protected function shouldReturnJson($request, Throwable $e)', '    {', '        return $request->expectsJson();', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 356, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('                    }', '                }', '            }', '        }', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $this->shouldReturnJson($request, $e)', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Map the exception using a registered mapper if possible.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function mapException(Throwable $e)', '    {', '        foreach ($this->exceptionMap as $class => $mapper) {', '            if (is_a($e, $class)) {', '                return $mapper($e);', '            }', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 86, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance', 'code_snippet' => array('                return response(', '                    $data[\'template\'],', '                    $data[\'status\'] ?? 503,', '                    $this->getHeaders($data)', '                );', '            }', '', '            throw new HttpException(', '                $data[\'status\'] ?? 503,', '                \'Service Unavailable\',', '                null,', '                $this->getHeaders($data)', '            );', '        }', '', '        return $next($request);', '    }', '', '    /**', '     * Determine if the incoming request has a maintenance mode bypass cookie.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  array  $data', '     * @return bool', '     */', '    protected function hasValidBypassCookie($request, array $data)', '    {', '        return isset($data[\'secret\']) &&', '                $request->cookie(\'laravel_maintenance\') &&', '                MaintenanceModeBypassCookie::isValid(', '                    $request->cookie(\'laravel_maintenance\'),'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 39, 'method' => 'handle', 'class' => 'Illuminate\\Http\\Middleware\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames());', '', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies() ?: config(\'trustedproxy.proxies\');', '', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 142, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 111, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 52, 'method' => '[top]', 'class' => null, 'code_snippet' => array('|--------------------------------------------------------------------------', '|', '| Composer provides a convenient, automatically generated class loader for', '| this application. We just need to utilize it! We\'ll simply require it', '| into the script here so we don\'t need to manually load our classes.', '|', '*/', '', 'require __DIR__.\'/../vendor/autoload.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request using', '| the application\'s HTTP kernel. Then, we will send the response back', '| to this client\'s browser, allowing them to enjoy our application.', '|', '*/', '', '$app = require_once __DIR__.\'/../bootstrap/app.php\';', '', '$kernel = $app->make(Kernel::class);', '', '$response = $kernel->handle(', '    $request = Request::capture()', ')->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://le-zo.com/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/tiktok.com/@dreamdembe', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip'), 'content-length' => array('0'), 'host' => array('le-zo.com'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.201.131.213'), 'via' => array('1.1 web53.lws-hosting.com (Varnish/7.4)'), 'x-target-backend' => array('91.234.195.113'), 'x-forwarded-host' => array('le-zo.com'), 'x-forwarded-port' => array('443'), 'x-forwarded-proto' => array('https'), 'x-forwarded-server' => array('le-zo.com'), 'x-cache-enabled' => array('1'), 'edge-cache-engine' => array('varnish'), 'edge-cache-engine-enable' => array('1'), 'edge-cache-mode' => array('default'), 'x-real-ip' => array('44.201.131.213'), 'x-request-id' => array('1a36823aedd1fe5470af66da26c40155'), 'x-varnish' => array('257262510')), 'cookies' => array(), 'session' => array(), 'route' => array('route' => null, 'routeParameters' => array(), 'controllerAction' => null, 'middleware' => array()), 'user' => array(), 'env' => array('laravel_version' => '8.83.26', 'laravel_locale' => 'en', 'laravel_config_cached' => true, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array()), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe', 'application_version' => null, 'tracking_uuid' => '25c6f5c9-cf43-4399-88ee-fac15f049cbe'), 'housekeepingEndpoint' => 'https://le-zo.com/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array(), 'appEnv' => 'local', 'appDebug' => true))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:540)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:519)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:503)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:482)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:356)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php:52)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract($_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $this->shouldReturnJson($request$e)
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Map the exception using a registered mapper if possible.
  9.      *
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 353#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/cp2042939...\', 353, Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include()#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include(\'/home/cp2042939...\')#4 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(568): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(522): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(503): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(482): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(356): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php(38): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#14 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Fruitcake\\Cors\\HandleCors-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#15 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#16 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#17 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#18 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#19 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#20 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#21 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://le-zo.com/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '8.83.26', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711620928, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 353, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 568, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 522, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 503, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 482, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    protected function shouldReturnJson($request, Throwable $e)', '    {', '        return $request->expectsJson();', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 356, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('                    }', '                }', '            }', '        }', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $this->shouldReturnJson($request, $e)', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Map the exception using a registered mapper if possible.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function mapException(Throwable $e)', '    {', '        foreach ($this->exceptionMap as $class => $mapper) {', '            if (is_a($e, $class)) {', '                return $mapper($e);', '            }', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'handle', 'class' => 'Fruitcake\\Cors\\HandleCors', 'code_snippet' => array('        $this->cors = $cors;', '        $this->container = $container;', '    }', '', '    /**', '     * Handle an incoming request. Based on Asm89\\Stack\\Cors by asm89', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return Response', '     */', '    public function handle($request, Closure $next)', '    {', '        // Check if we\'re dealing with CORS and if we should handle it', '        if (! $this->shouldRun($request)) {', '            return $next($request);', '        }', '', '        // For Preflight, return the Preflight response', '        if ($this->cors->isPreflightRequest($request)) {', '            $response = $this->cors->handlePreflightRequest($request);', '', '            $this->cors->varyHeader($response, \'Access-Control-Request-Method\');', '', '            return $response;', '        }', '', '', '        // Handle the request', '        $response = $next($request);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/fruitcake/laravel-cors/src/HandleCors.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 39, 'method' => 'handle', 'class' => 'Illuminate\\Http\\Middleware\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames());', '', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies() ?: config(\'trustedproxy.proxies\');', '', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 142, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 111, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 52, 'method' => '[top]', 'class' => null, 'code_snippet' => array('|--------------------------------------------------------------------------', '|', '| Composer provides a convenient, automatically generated class loader for', '| this application. We just need to utilize it! We\'ll simply require it', '| into the script here so we don\'t need to manually load our classes.', '|', '*/', '', 'require __DIR__.\'/../vendor/autoload.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request using', '| the application\'s HTTP kernel. Then, we will send the response back', '| to this client\'s browser, allowing them to enjoy our application.', '|', '*/', '', '$app = require_once __DIR__.\'/../bootstrap/app.php\';', '', '$kernel = $app->make(Kernel::class);', '', '$response = $kernel->handle(', '    $request = Request::capture()', ')->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://le-zo.com/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/tiktok.com/@dreamdembe', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip'), 'content-length' => array('0'), 'host' => array('le-zo.com'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.201.131.213'), 'via' => array('1.1 web53.lws-hosting.com (Varnish/7.4)'), 'x-target-backend' => array('91.234.195.113'), 'x-forwarded-host' => array('le-zo.com'), 'x-forwarded-port' => array('443'), 'x-forwarded-proto' => array('https'), 'x-forwarded-server' => array('le-zo.com'), 'x-cache-enabled' => array('1'), 'edge-cache-engine' => array('varnish'), 'edge-cache-engine-enable' => array('1'), 'edge-cache-mode' => array('default'), 'x-real-ip' => array('44.201.131.213'), 'x-request-id' => array('1a36823aedd1fe5470af66da26c40155'), 'x-varnish' => array('257262510')), 'cookies' => array(), 'session' => array(), 'route' => array('route' => null, 'routeParameters' => array(), 'controllerAction' => null, 'middleware' => array()), 'user' => array(), 'env' => array('laravel_version' => '8.83.26', 'laravel_locale' => 'en', 'laravel_config_cached' => true, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array()), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe', 'application_version' => null, 'tracking_uuid' => 'f55cdc82-3ab3-43f0-a259-1daec6fcdde2'), 'housekeepingEndpoint' => 'https://le-zo.com/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array(), 'appEnv' => 'local', 'appDebug' => true))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:540)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:519)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:503)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:482)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:356)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php:52)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract($_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $this->shouldReturnJson($request$e)
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Map the exception using a registered mapper if possible.
  9.      *
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (is_object($response) && method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.                                     ? $pipe->{$this->method}(...$parameters)
  2.                                     : $pipe(...$parameters);
  3.                     return $this->handleCarry($carry);
  4.                 } catch (Throwable $e) {
  5.                     return $this->handleException($passable$e);
  6.                 }
  7.             };
  8.         };
  9.     }
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 353#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/cp2042939...\', 353, Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include()#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include(\'/home/cp2042939...\')#4 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(568): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(522): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(503): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(482): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(356): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#14 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(167): Illuminate\\Http\\Middleware\\TrustProxies-&gt;handle(Object(Illuminate\\Http\\Request), Object(Closure))#15 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#16 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#17 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#18 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#19 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://le-zo.com/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '8.83.26', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711620928, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 353, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 568, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 522, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 503, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 482, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    protected function shouldReturnJson($request, Throwable $e)', '    {', '        return $request->expectsJson();', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 356, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('                    }', '                }', '            }', '        }', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $this->shouldReturnJson($request, $e)', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Map the exception using a registered mapper if possible.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function mapException(Throwable $e)', '    {', '        foreach ($this->exceptionMap as $class => $mapper) {', '            if (is_a($e, $class)) {', '                return $mapper($e);', '            }', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 39, 'method' => 'handle', 'class' => 'Illuminate\\Http\\Middleware\\TrustProxies', 'code_snippet' => array('    /**', '     * Handle an incoming request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Closure  $next', '     * @return mixed', '     *', '     * @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException', '     */', '    public function handle(Request $request, Closure $next)', '    {', '        $request::setTrustedProxies([], $this->getTrustedHeaderNames());', '', '        $this->setTrustedProxyIpAddresses($request);', '', '        return $next($request);', '    }', '', '    /**', '     * Sets the trusted proxies on the request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return void', '     */', '    protected function setTrustedProxyIpAddresses(Request $request)', '    {', '        $trustedIps = $this->proxies() ?: config(\'trustedproxy.proxies\');', '', '        if ($trustedIps === \'*\' || $trustedIps === \'**\') {', '            return $this->setTrustedProxyIpAddressesToTheCallingIp($request);', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php', 'is_application_frame' => false), array('line_number' => 167, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        // If the pipe is a string we will parse the string and resolve the class out', '                        // of the dependency injection container. We can then build a callable and', '                        // execute the pipe function giving in the parameters that are required.', '                        $pipe = $this->getContainer()->make($name);', '', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 142, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 111, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 52, 'method' => '[top]', 'class' => null, 'code_snippet' => array('|--------------------------------------------------------------------------', '|', '| Composer provides a convenient, automatically generated class loader for', '| this application. We just need to utilize it! We\'ll simply require it', '| into the script here so we don\'t need to manually load our classes.', '|', '*/', '', 'require __DIR__.\'/../vendor/autoload.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request using', '| the application\'s HTTP kernel. Then, we will send the response back', '| to this client\'s browser, allowing them to enjoy our application.', '|', '*/', '', '$app = require_once __DIR__.\'/../bootstrap/app.php\';', '', '$kernel = $app->make(Kernel::class);', '', '$response = $kernel->handle(', '    $request = Request::capture()', ')->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://le-zo.com/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/tiktok.com/@dreamdembe', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip'), 'content-length' => array('0'), 'host' => array('le-zo.com'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.201.131.213'), 'via' => array('1.1 web53.lws-hosting.com (Varnish/7.4)'), 'x-target-backend' => array('91.234.195.113'), 'x-forwarded-host' => array('le-zo.com'), 'x-forwarded-port' => array('443'), 'x-forwarded-proto' => array('https'), 'x-forwarded-server' => array('le-zo.com'), 'x-cache-enabled' => array('1'), 'edge-cache-engine' => array('varnish'), 'edge-cache-engine-enable' => array('1'), 'edge-cache-mode' => array('default'), 'x-real-ip' => array('44.201.131.213'), 'x-request-id' => array('1a36823aedd1fe5470af66da26c40155'), 'x-varnish' => array('257262510')), 'cookies' => array(), 'session' => array(), 'route' => array('route' => null, 'routeParameters' => array(), 'controllerAction' => null, 'middleware' => array()), 'user' => array(), 'env' => array('laravel_version' => '8.83.26', 'laravel_locale' => 'en', 'laravel_config_cached' => true, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array()), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe', 'application_version' => null, 'tracking_uuid' => '558ba000-0e25-431d-8076-db3799c917fc'), 'housekeepingEndpoint' => 'https://le-zo.com/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array(), 'appEnv' => 'local', 'appDebug' => true))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:540)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:519)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:503)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:482)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:356)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php:52)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract($_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $this->shouldReturnJson($request$e)
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Map the exception using a registered mapper if possible.
  9.      *
  1.      * @param  \Throwable  $e
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     protected function renderException($requestThrowable $e)
  5.     {
  6.         return $this->app[ExceptionHandler::class]->render($request$e);
  7.     }
  8.     /**
  9.      * Get the application's route middleware groups.
  10.      *
  1.             $response $this->sendRequestThroughRouter($request);
  2.         } catch (Throwable $e) {
  3.             $this->reportException($e);
  4.             $response $this->renderException($request$e);
  5.         }
  6.         $this->app['events']->dispatch(
  7.             new RequestHandled($request$response)
  8.         );
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 353#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/cp2042939...\', 353, Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include()#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include(\'/home/cp2042939...\')#4 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(568): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(522): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(503): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(482): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(356): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(172): Illuminate\\Routing\\Pipeline-&gt;handleException(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(103): Illuminate\\Pipeline\\Pipeline-&gt;Illuminate\\Pipeline\\{closure}(Object(Illuminate\\Http\\Request))#14 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(142): Illuminate\\Pipeline\\Pipeline-&gt;then(Object(Closure))#15 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(111): Illuminate\\Foundation\\Http\\Kernel-&gt;sendRequestThroughRouter(Object(Illuminate\\Http\\Request))#16 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#17 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://le-zo.com/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '8.83.26', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711620928, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 353, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 568, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 522, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 503, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 482, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    protected function shouldReturnJson($request, Throwable $e)', '    {', '        return $request->expectsJson();', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 356, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('                    }', '                }', '            }', '        }', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $this->shouldReturnJson($request, $e)', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Map the exception using a registered mapper if possible.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function mapException(Throwable $e)', '    {', '        foreach ($this->exceptionMap as $class => $mapper) {', '            if (is_a($e, $class)) {', '                return $mapper($e);', '            }', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 51, 'method' => 'handleException', 'class' => 'Illuminate\\Routing\\Pipeline', 'code_snippet' => array('', '    /**', '     * Handle the given exception.', '     *', '     * @param  mixed  $passable', '     * @param  \\Throwable  $e', '     * @return mixed', '     *', '     * @throws \\Throwable', '     */', '    protected function handleException($passable, Throwable $e)', '    {', '        if (! $this->container->bound(ExceptionHandler::class) ||', '            ! $passable instanceof Request) {', '            throw $e;', '        }', '', '        $handler = $this->container->make(ExceptionHandler::class);', '', '        $handler->report($e);', '', '        $response = $handler->render($passable, $e);', '', '        if (is_object($response) && method_exists($response, \'withException\')) {', '            $response->withException($e);', '        }', '', '        return $response;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php', 'is_application_frame' => false), array('line_number' => 172, 'method' => 'Illuminate\\Pipeline\\{closure}', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('', '                        $parameters = array_merge([$passable, $stack], $parameters);', '                    } else {', '                        // If the pipe is already an object we\'ll just make a callable and pass it to', '                        // the pipe as-is. There is no need to do any extra parsing and formatting', '                        // since the object we\'re given was already a fully instantiated object.', '                        $parameters = [$passable, $stack];', '                    }', '', '                    $carry = method_exists($pipe, $this->method)', '                                    ? $pipe->{$this->method}(...$parameters)', '                                    : $pipe(...$parameters);', '', '                    return $this->handleCarry($carry);', '                } catch (Throwable $e) {', '                    return $this->handleException($passable, $e);', '                }', '            };', '        };', '    }', '', '    /**', '     * Parse full pipe string to get name and parameters.', '     *', '     * @param  string  $pipe', '     * @return array', '     */', '    protected function parsePipeString($pipe)', '    {', '        [$name, $parameters] = array_pad(explode(\':\', $pipe, 2), 2, []);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 103, 'method' => 'then', 'class' => 'Illuminate\\Pipeline\\Pipeline', 'code_snippet' => array('        return $this;', '    }', '', '    /**', '     * Run the pipeline with a final destination callback.', '     *', '     * @param  \\Closure  $destination', '     * @return mixed', '     */', '    public function then(Closure $destination)', '    {', '        $pipeline = array_reduce(', '            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)', '        );', '', '        return $pipeline($this->passable);', '    }', '', '    /**', '     * Run the pipeline and return the result.', '     *', '     * @return mixed', '     */', '    public function thenReturn()', '    {', '        return $this->then(function ($passable) {', '            return $passable;', '        });', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php', 'is_application_frame' => false), array('line_number' => 142, 'method' => 'sendRequestThroughRouter', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    protected function sendRequestThroughRouter($request)', '    {', '        $this->app->instance(\'request\', $request);', '', '        Facade::clearResolvedInstance(\'request\');', '', '        $this->bootstrap();', '', '        return (new Pipeline($this->app))', '                    ->send($request)', '                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)', '                    ->then($this->dispatchToRouter());', '    }', '', '    /**', '     * Bootstrap the application for HTTP requests.', '     *', '     * @return void', '     */', '    public function bootstrap()', '    {', '        if (! $this->app->hasBeenBootstrapped()) {', '            $this->app->bootstrapWith($this->bootstrappers());', '        }', '    }', '', '    /**'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 111, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('', '        $this->syncMiddlewareToRouter();', '    }', '', '    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 52, 'method' => '[top]', 'class' => null, 'code_snippet' => array('|--------------------------------------------------------------------------', '|', '| Composer provides a convenient, automatically generated class loader for', '| this application. We just need to utilize it! We\'ll simply require it', '| into the script here so we don\'t need to manually load our classes.', '|', '*/', '', 'require __DIR__.\'/../vendor/autoload.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request using', '| the application\'s HTTP kernel. Then, we will send the response back', '| to this client\'s browser, allowing them to enjoy our application.', '|', '*/', '', '$app = require_once __DIR__.\'/../bootstrap/app.php\';', '', '$kernel = $app->make(Kernel::class);', '', '$response = $kernel->handle(', '    $request = Request::capture()', ')->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://le-zo.com/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/tiktok.com/@dreamdembe', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip'), 'content-length' => array('0'), 'host' => array('le-zo.com'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.201.131.213'), 'via' => array('1.1 web53.lws-hosting.com (Varnish/7.4)'), 'x-target-backend' => array('91.234.195.113'), 'x-forwarded-host' => array('le-zo.com'), 'x-forwarded-port' => array('443'), 'x-forwarded-proto' => array('https'), 'x-forwarded-server' => array('le-zo.com'), 'x-cache-enabled' => array('1'), 'edge-cache-engine' => array('varnish'), 'edge-cache-engine-enable' => array('1'), 'edge-cache-mode' => array('default'), 'x-real-ip' => array('44.201.131.213'), 'x-request-id' => array('1a36823aedd1fe5470af66da26c40155'), 'x-varnish' => array('257262510')), 'cookies' => array(), 'session' => array(), 'route' => array('route' => null, 'routeParameters' => array(), 'controllerAction' => null, 'middleware' => array()), 'user' => array(), 'env' => array('laravel_version' => '8.83.26', 'laravel_locale' => 'en', 'laravel_config_cached' => true, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array()), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe', 'application_version' => null, 'tracking_uuid' => 'b788efb2-66d0-46ca-9f87-9c635f235bc1'), 'housekeepingEndpoint' => 'https://le-zo.com/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array(), 'appEnv' => 'local', 'appDebug' => true))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:540)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:519)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:503)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:482)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:356)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:427)
  at Illuminate\Foundation\Http\Kernel->renderException(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:115)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php:52)                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract($_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $this->shouldReturnJson($request$e)
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Map the exception using a registered mapper if possible.
  9.      *
  1.      * @param  \Throwable  $e
  2.      * @return void
  3.      */
  4.     protected function renderHttpResponse(Throwable $e)
  5.     {
  6.         $this->getExceptionHandler()->render($this->app['request'], $e)->send();
  7.     }
  8.     /**
  9.      * Handle the PHP shutdown event.
  10.      *
  1.         }
  2.         if ($this->app->runningInConsole()) {
  3.             $this->renderForConsole($e);
  4.         } else {
  5.             $this->renderHttpResponse($e);
  6.         }
  7.     }
  8.     /**
  9.      * Render an exception to the console.
HandleExceptions->handleException(object(ErrorException))

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in file /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 353#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/cp2042939...\', 353, Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include()#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include(\'/home/cp2042939...\')#4 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(155): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'views/exception...\', Array)#5 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(81): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;renderException(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#6 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(568): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;render(Object(Symfony\\Component\\ErrorHandler\\Exception\\FlattenException))#7 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(522): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionWithSymfony(Object(Facade\\Ignition\\Exceptions\\ViewException), true)#8 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(503): Illuminate\\Foundation\\Exceptions\\Handler-&gt;renderExceptionContent(Object(Facade\\Ignition\\Exceptions\\ViewException))#9 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(482): Illuminate\\Foundation\\Exceptions\\Handler-&gt;convertExceptionToResponse(Object(ErrorException))#10 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(356): Illuminate\\Foundation\\Exceptions\\Handler-&gt;prepareResponse(Object(Illuminate\\Http\\Request), Object(ErrorException))#11 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(427): Illuminate\\Foundation\\Exceptions\\Handler-&gt;render(Object(Illuminate\\Http\\Request), Object(ErrorException))#12 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(115): Illuminate\\Foundation\\Http\\Kernel-&gt;renderException(Object(Illuminate\\Http\\Request), Object(ErrorException))#13 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php(52): Illuminate\\Foundation\\Http\\Kernel-&gt;handle(Object(Illuminate\\Http\\Request))#14 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://le-zo.com/_ignition/share-report', 'title' => '🧨 include(assets/js/exception.js): failed to open stream: No such file or directory', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '8.83.26', 'language_version' => '7.4.33', 'exception_class' => 'ErrorException', 'seen_at' => 1711620928, 'message' => 'include(assets/js/exception.js): failed to open stream: No such file or directory', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 353, 'method' => 'handleError', 'class' => 'Illuminate\\Foundation\\Bootstrap\\HandleExceptions', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 38, 'method' => 'include', 'class' => null, 'code_snippet' => array('    <body>', '        <script>', '            document.body.classList.add(', '                localStorage.getItem(\'symfony/profiler/theme\') || (matchMedia(\'(prefers-color-scheme: dark)\').matches ? \'theme-dark\' : \'theme-light\')', '            );', '        </script>', '', '        <?php if (class_exists(\\Symfony\\Component\\HttpKernel\\Kernel::class)) { ?>', '            <header>', '                <div class="container">', '                    <h1 class="logo"><?= $this->include(\'assets/images/symfony-logo.svg\'); ?> Symfony Exception</h1>', '', '                    <div class="help-link">', '                        <a href="https://symfony.com/doc/<?= Symfony\\Component\\HttpKernel\\Kernel::VERSION; ?>/index.html">', '                            <span class="icon"><?= $this->include(\'assets/images/icon-book.svg\'); ?></span>', '                            <span class="hidden-xs-down">Symfony</span> Docs', '                        </a>', '                    </div>', '                </div>', '            </header>', '        <?php } ?>', '', '        <?= $this->include(\'views/exception.html.php\', $context); ?>', '', '        <script>', '            <?= $this->include(\'assets/js/exception.js\'); ?>', '        </script>', '    </body>', '</html>', '<!-- <?= $_message; ?> -->', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php', 'is_application_frame' => false), array('line_number' => 353, 'method' => 'include', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 155, 'method' => 'renderException', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('        if (!$debug) {', '            return $this->include(self::$template, [', '                \'statusText\' => $statusText,', '                \'statusCode\' => $statusCode,', '            ]);', '        }', '', '        $exceptionMessage = $this->escape($exception->getMessage());', '', '        return $this->include($debugTemplate, [', '            \'exception\' => $exception,', '            \'exceptionMessage\' => $exceptionMessage,', '            \'statusText\' => $statusText,', '            \'statusCode\' => $statusCode,', '            \'logger\' => $this->logger instanceof DebugLoggerInterface ? $this->logger : null,', '            \'currentContent\' => \\is_string($this->outputBuffer) ? $this->outputBuffer : ($this->outputBuffer)(),', '        ]);', '    }', '', '    /**', '     * Formats an array as a string.', '     */', '    private function formatArgs(array $args): string', '    {', '        $result = [];', '        foreach ($args as $key => $item) {', '            if (\'object\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>object</em>(%s)\', $this->abbrClass($item[1]));', '            } elseif (\'array\' === $item[0]) {', '                $formattedValue = sprintf(\'<em>array</em>(%s)\', \\is_array($item[1]) ? $this->formatArgs($item[1]) : $item[1]);', '            } elseif (\'null\' === $item[0]) {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 81, 'method' => 'render', 'class' => 'Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer', 'code_snippet' => array('    }', '', '    /**', '     * {@inheritdoc}', '     */', '    public function render(\\Throwable $exception): FlattenException', '    {', '        $headers = [\'Content-Type\' => \'text/html; charset=\'.$this->charset];', '        if (\\is_bool($this->debug) ? $this->debug : ($this->debug)($exception)) {', '            $headers[\'X-Debug-Exception\'] = rawurlencode($exception->getMessage());', '            $headers[\'X-Debug-Exception-File\'] = rawurlencode($exception->getFile()).\':\'.$exception->getLine();', '        }', '', '        $exception = FlattenException::createFromThrowable($exception, null, $headers);', '', '        return $exception->setAsString($this->renderException($exception));', '    }', '', '    /**', '     * Gets the HTML content associated with the given exception.', '     */', '    public function getBody(FlattenException $exception): string', '    {', '        return $this->renderException($exception, \'views/exception.html.php\');', '    }', '', '    /**', '     * Gets the stylesheet associated with the given exception.', '     */', '    public function getStylesheet(): string', '    {'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false), array('line_number' => 568, 'method' => 'renderExceptionWithSymfony', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('            return (new WhoopsHandler)->forDebug();', '        }', '    }', '', '    /**', '     * Render an exception to a string using Symfony.', '     *', '     * @param  \\Throwable  $e', '     * @param  bool  $debug', '     * @return string', '     */', '    protected function renderExceptionWithSymfony(Throwable $e, $debug)', '    {', '        $renderer = new HtmlErrorRenderer($debug);', '', '        return $renderer->render($e)->getAsString();', '    }', '', '    /**', '     * Render the given HttpException.', '     *', '     * @param  \\Symfony\\Component\\HttpKernel\\Exception\\HttpExceptionInterface  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderHttpException(HttpExceptionInterface $e)', '    {', '        $this->registerErrorViewPaths();', '', '        if (view()->exists($view = $this->getHttpExceptionView($e))) {', '            return response()->view($view, [', '                \'errors\' => new ViewErrorBag,'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 522, 'method' => 'renderExceptionContent', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)', '                        ? $this->renderExceptionWithWhoops($e)', '                        : $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        } catch (Exception $e) {', '            return $this->renderExceptionWithSymfony($e, config(\'app.debug\'));', '        }', '    }', '', '    /**', '     * Render an exception to a string using "Whoops".', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionWithWhoops(Throwable $e)', '    {', '        return tap(new Whoops, function ($whoops) {', '            $whoops->appendHandler($this->whoopsHandler());', '', '            $whoops->writeToOutput(false);'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 503, 'method' => 'convertExceptionToResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function convertExceptionToResponse(Throwable $e)', '    {', '        return new SymfonyResponse(', '            $this->renderExceptionContent($e),', '            $this->isHttpException($e) ? $e->getStatusCode() : 500,', '            $this->isHttpException($e) ? $e->getHeaders() : []', '        );', '    }', '', '    /**', '     * Get the response content for the given exception.', '     *', '     * @param  \\Throwable  $e', '     * @return string', '     */', '    protected function renderExceptionContent(Throwable $e)', '    {', '        try {', '            return config(\'app.debug\') && class_exists(Whoops::class)'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 482, 'method' => 'prepareResponse', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('    protected function shouldReturnJson($request, Throwable $e)', '    {', '        return $request->expectsJson();', '    }', '', '    /**', '     * Prepare a response for the given exception.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function prepareResponse($request, Throwable $e)', '    {', '        if (! $this->isHttpException($e) && config(\'app.debug\')) {', '            return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);', '        }', '', '        if (! $this->isHttpException($e)) {', '            $e = new HttpException(500, $e->getMessage());', '        }', '', '        return $this->toIlluminateResponse(', '            $this->renderHttpException($e), $e', '        );', '    }', '', '    /**', '     * Create a Symfony response for the given exception.', '     *', '     * @param  \\Throwable  $e'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 356, 'method' => 'render', 'class' => 'Illuminate\\Foundation\\Exceptions\\Handler', 'code_snippet' => array('                    }', '                }', '            }', '        }', '', '        if ($e instanceof HttpResponseException) {', '            return $e->getResponse();', '        } elseif ($e instanceof AuthenticationException) {', '            return $this->unauthenticated($request, $e);', '        } elseif ($e instanceof ValidationException) {', '            return $this->convertValidationExceptionToResponse($e, $request);', '        }', '', '        return $this->shouldReturnJson($request, $e)', '                    ? $this->prepareJsonResponse($request, $e)', '                    : $this->prepareResponse($request, $e);', '    }', '', '    /**', '     * Map the exception using a registered mapper if possible.', '     *', '     * @param  \\Throwable  $e', '     * @return \\Throwable', '     */', '    protected function mapException(Throwable $e)', '    {', '        foreach ($this->exceptionMap as $class => $mapper) {', '            if (is_a($e, $class)) {', '                return $mapper($e);', '            }', '        }'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php', 'is_application_frame' => false), array('line_number' => 427, 'method' => 'renderException', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('     */', '    protected function reportException(Throwable $e)', '    {', '        $this->app[ExceptionHandler::class]->report($e);', '    }', '', '    /**', '     * Render the exception to a response.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @param  \\Throwable  $e', '     * @return \\Symfony\\Component\\HttpFoundation\\Response', '     */', '    protected function renderException($request, Throwable $e)', '    {', '        return $this->app[ExceptionHandler::class]->render($request, $e);', '    }', '', '    /**', '     * Get the application\'s route middleware groups.', '     *', '     * @return array', '     */', '    public function getMiddlewareGroups()', '    {', '        return $this->middlewareGroups;', '    }', '', '    /**', '     * Get the application\'s route middleware.', '     *'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 115, 'method' => 'handle', 'class' => 'Illuminate\\Foundation\\Http\\Kernel', 'code_snippet' => array('    /**', '     * Handle an incoming HTTP request.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */', '    public function handle($request)', '    {', '        try {', '            $request->enableHttpMethodParameterOverride();', '', '            $response = $this->sendRequestThroughRouter($request);', '        } catch (Throwable $e) {', '            $this->reportException($e);', '', '            $response = $this->renderException($request, $e);', '        }', '', '        $this->app[\'events\']->dispatch(', '            new RequestHandled($request, $response)', '        );', '', '        return $response;', '    }', '', '    /**', '     * Send the given request through the middleware / router.', '     *', '     * @param  \\Illuminate\\Http\\Request  $request', '     * @return \\Illuminate\\Http\\Response', '     */'), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php', 'is_application_frame' => false), array('line_number' => 52, 'method' => '[top]', 'class' => null, 'code_snippet' => array('|--------------------------------------------------------------------------', '|', '| Composer provides a convenient, automatically generated class loader for', '| this application. We just need to utilize it! We\'ll simply require it', '| into the script here so we don\'t need to manually load our classes.', '|', '*/', '', 'require __DIR__.\'/../vendor/autoload.php\';', '', '/*', '|--------------------------------------------------------------------------', '| Run The Application', '|--------------------------------------------------------------------------', '|', '| Once we have the application, we can handle the incoming request using', '| the application\'s HTTP kernel. Then, we will send the response back', '| to this client\'s browser, allowing them to enjoy our application.', '|', '*/', '', '$app = require_once __DIR__.\'/../bootstrap/app.php\';', '', '$kernel = $app->make(Kernel::class);', '', '$response = $kernel->handle(', '    $request = Request::capture()', ')->send();', '', '$kernel->terminate($request, $response);', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/public/index.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://le-zo.com/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/tiktok.com/@dreamdembe', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip'), 'content-length' => array('0'), 'host' => array('le-zo.com'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.201.131.213'), 'via' => array('1.1 web53.lws-hosting.com (Varnish/7.4)'), 'x-target-backend' => array('91.234.195.113'), 'x-forwarded-host' => array('le-zo.com'), 'x-forwarded-port' => array('443'), 'x-forwarded-proto' => array('https'), 'x-forwarded-server' => array('le-zo.com'), 'x-cache-enabled' => array('1'), 'edge-cache-engine' => array('varnish'), 'edge-cache-engine-enable' => array('1'), 'edge-cache-mode' => array('default'), 'x-real-ip' => array('44.201.131.213'), 'x-request-id' => array('1a36823aedd1fe5470af66da26c40155'), 'x-varnish' => array('257262510')), 'cookies' => array(), 'session' => array(), 'route' => array('route' => null, 'routeParameters' => array(), 'controllerAction' => null, 'middleware' => array()), 'user' => array(), 'env' => array('laravel_version' => '8.83.26', 'laravel_locale' => 'en', 'laravel_config_cached' => true, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array()), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe', 'application_version' => null, 'tracking_uuid' => '86941564-7e97-456f-bcda-7b4702077a62'), 'housekeepingEndpoint' => 'https://le-zo.com/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array(), 'appEnv' => 'local', 'appDebug' => true))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:540)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:519)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:503)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:482)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:356)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:196)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->renderHttpResponse(object(ErrorException))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:173)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleException(object(ErrorException))                

Symfony Exception

ViewException

HTTP 500 Internal Server Error

file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

Exception

Facade\Ignition\Exceptions\ ViewException

  1.         try {
  2.             extract($_dataEXTR_OVERWRITE);
  3.             include $viewFile;
  4.         } catch (Exception $exception) {
  5.             $viewException = new ViewException($exception->getMessage());
  6.             $viewException->setView($viewFile);
  7.             $viewException->setViewData($_data);
  8.             throw $viewException;
  9.         }
  1.     protected function renderException(ErrorPageViewModel $exceptionViewModel)
  2.     {
  3.         echo $this->renderer->render(
  4.             'errorPage',
  5.             $exceptionViewModel->toArray()
  6.         );
  7.     }
  8. }
  1.             $solutions
  2.         );
  3.         $viewModel->defaultTab($defaultTab$defaultTabProps);
  4.         $this->renderException($viewModel);
  5.     }
  6.     public function handleReport(Report $report$defaultTab null$defaultTabProps = [])
  7.     {
  8.         $viewModel = new ErrorPageViewModel(
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return new SymfonyResponse(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $this->shouldReturnJson($request$e)
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Map the exception using a registered mapper if possible.
  9.      *
  1.      * @param  \Throwable  $e
  2.      * @return void
  3.      */
  4.     protected function renderHttpResponse(Throwable $e)
  5.     {
  6.         $this->getExceptionHandler()->render($this->app['request'], $e)->send();
  7.     }
  8.     /**
  9.      * Handle the PHP shutdown event.
  10.      *
  1.         }
  2.         if ($this->app->runningInConsole()) {
  3.             $this->renderForConsole($e);
  4.         } else {
  5.             $this->renderHttpResponse($e);
  6.         }
  7.     }
  8.     /**
  9.      * Render an exception to the console.
  1.     public function handleShutdown()
  2.     {
  3.         self::$reservedMemory null;
  4.         if (! is_null($error error_get_last()) && $this->isFatal($error['type'])) {
  5.             $this->handleException($this->fatalErrorFromPhpError($error0));
  6.         }
  7.     }
  8.     /**
  9.      * Create a new fatal error instance from an error array.
HandleExceptions->handleShutdown()

Stack Trace

ViewException
Facade\Ignition\Exceptions\ViewException:
file_get_contents(/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/../../resources/compiled/ignition.js): failed to open stream: No such file or directory

  at /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/Renderer.php:29
  at Facade\Ignition\ErrorPage\Renderer->render('errorPage', array('throwableString' => 'Symfony\\Component\\ErrorHandler\\Error\\FatalError: Uncaught ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php:353Stack trace:#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/cp2042939...\', 353, Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include()#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/cp2042939 in file /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php on line 353#0 {main}', 'telescopeUrl' => null, 'shareEndpoint' => 'https://le-zo.com/_ignition/share-report', 'title' => '🧨 Uncaught ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php:353Stack trace:#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): Illuminate\\Foundation\\Bootstrap\\HandleExceptions-&gt;handleError(2, \'include(assets/...\', \'/home/cp2042939...\', 353, Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include()#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer-&gt;include(\'assets/js/excep...\')#3 /home/cp2042939', 'config' => array('editor' => 'phpstorm', 'remoteSitesPath' => '', 'localSitesPath' => '', 'theme' => 'light', 'enableShareButton' => true, 'enableRunnableSolutions' => true, 'directorySeparator' => '/'), 'solutions' => array(), 'report' => array('notifier' => 'Laravel Client', 'language' => 'PHP', 'framework_version' => '8.83.26', 'language_version' => '7.4.33', 'exception_class' => 'Symfony\\Component\\ErrorHandler\\Error\\FatalError', 'seen_at' => 1711620928, 'message' => 'Uncaught ErrorException: include(assets/js/exception.js): failed to open stream: No such file or directory in /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php:353Stack trace:#0 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, \'include(assets/...\', \'/home/cp2042939...\', 353, Array)#1 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php(353): include()#2 /home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/Resources/views/exception_full.html.php(38): Symfony\\Component\\ErrorHandler\\ErrorRenderer\\HtmlErrorRenderer->include(\'assets/js/excep...\')#3 /home/cp2042939', 'glows' => array(), 'solutions' => array(), 'stacktrace' => array(array('line_number' => 353, 'method' => '[top]', 'class' => null, 'code_snippet' => array('', '    private function addElementToGhost(): string', '    {', '        if (!isset(self::GHOST_ADDONS[date(\'m-d\')])) {', '            return \'\';', '        }', '', '        return \'<path d="\'.self::GHOST_ADDONS[date(\'m-d\')].\'" fill="#fff" fill-opacity="0.6"></path>\';', '    }', '', '    private function include(string $name, array $context = []): string', '    {', '        extract($context, \\EXTR_SKIP);', '        ob_start();', '', '        include is_file(\\dirname(__DIR__).\'/Resources/\'.$name) ? \\dirname(__DIR__).\'/Resources/\'.$name : $name;', '', '        return trim(ob_get_clean());', '    }', '', '    /**', '     * Allows overriding the default non-debug template.', '     *', '     * @param string $template path to the custom template file to render', '     */', '    public static function setTemplate(string $template): void', '    {', '        self::$template = $template;', '    }', '}', ''), 'file' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/symfony/error-handler/ErrorRenderer/HtmlErrorRenderer.php', 'is_application_frame' => false)), 'context' => array('request' => array('url' => 'https://le-zo.com/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/tiktok.com/@dreamdembe', 'ip' => null, 'method' => 'GET', 'useragent' => 'claudebot'), 'request_data' => array('queryString' => array(), 'body' => array(), 'files' => array()), 'headers' => array('accept' => array('*/*'), 'accept-encoding' => array('gzip'), 'content-length' => array('0'), 'host' => array('le-zo.com'), 'user-agent' => array('claudebot'), 'x-forwarded-for' => array('44.201.131.213'), 'via' => array('1.1 web53.lws-hosting.com (Varnish/7.4)'), 'x-target-backend' => array('91.234.195.113'), 'x-forwarded-host' => array('le-zo.com'), 'x-forwarded-port' => array('443'), 'x-forwarded-proto' => array('https'), 'x-forwarded-server' => array('le-zo.com'), 'x-cache-enabled' => array('1'), 'edge-cache-engine' => array('varnish'), 'edge-cache-engine-enable' => array('1'), 'edge-cache-mode' => array('default'), 'x-real-ip' => array('44.201.131.213'), 'x-request-id' => array('1a36823aedd1fe5470af66da26c40155'), 'x-varnish' => array('257262510')), 'cookies' => array(), 'session' => array(), 'route' => array('route' => null, 'routeParameters' => array(), 'controllerAction' => null, 'middleware' => array()), 'user' => array(), 'env' => array('laravel_version' => '8.83.26', 'laravel_locale' => 'en', 'laravel_config_cached' => true, 'php_version' => '7.4.33'), 'logs' => array(), 'dumps' => array(), 'queries' => array()), 'stage' => 'local', 'message_level' => null, 'open_frame_index' => null, 'application_path' => '/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe', 'application_version' => null, 'tracking_uuid' => 'bc98c88a-8c99-4501-a489-79586a519456'), 'housekeepingEndpoint' => 'https://le-zo.com/_ignition', 'styles' => array(), 'scripts' => array(), 'tabs' => '[]', 'jsonEncode' => object(Closure), 'getAssetContents' => object(Closure), 'defaultTab' => 'StackTab', 'defaultTabProps' => array(), 'appEnv' => 'local', 'appDebug' => true))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:74)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->renderException(object(ErrorPageViewModel))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:53)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(FatalError))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(FatalError))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/filp/whoops/src/Whoops/Run.php:370)
  at Whoops\Run->handleException(object(FatalError))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:540)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(FatalError))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:519)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(FatalError))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:503)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(FatalError))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:482)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(FatalError))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:356)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(FatalError))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:196)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->renderHttpResponse(object(FatalError))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:173)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleException(object(FatalError))
     (/home/cp2042939p04/public_html/visibilite-entreprises/entreprises/mode-beaute/dream-de-mbe/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:209)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleShutdown()