Symfony Exception

Exception ViewException ViewException

HTTP 500 Internal Server Error

Unable to locate file in Vite manifest: resources/css/web/web.css. (View: /var/task/resources/views/web/layouts/error.blade.php) (View: /var/task/resources/views/web/layouts/error.blade.php)

Exceptions 3

Illuminate\View\ ViewException

  1.      * @throws \Exception
  2.      */
  3.     protected function chunk($manifest$file)
  4.     {
  5.         if (! isset($manifest[$file])) {
  6.             throw new Exception("Unable to locate file in Vite manifest: {$file}.");
  7.         }
  8.         return $manifest[$file];
  9.     }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      * {@inheritdoc}
  2.      */
  3.     public function get($path, array $data = [])
  4.     {
  5.         if (!Inspector::canAddSegments()) {
  6.             return $this->engine->get($path$data);
  7.         }
  8.         $label 'view::'.$this->viewFactory->shared(self::SHARED_KEYbasename($path));
  9.         return Inspector::addSegment(function (Segment $segment) use ($path$data) {
  1.         $span $parentSpan->startChild($context);
  2.         SentrySdk::getCurrentHub()->setSpan($span);
  3.         $result $this->engine->get($path$data);
  4.         $span->finish();
  5.         SentrySdk::getCurrentHub()->setSpan($parentSpan);
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         // If this content implements the "Renderable" interface then we will call the
  2.         // render method on the object so we will avoid any "__toString" exceptions
  3.         // that might be thrown and have their errors obscured by PHP's handling.
  4.         elseif ($content instanceof Renderable) {
  5.             $content $content->render();
  6.         }
  7.         parent::setContent($content);
  8.         return $this;
  1.      */
  2.     public function __construct($content ''$status 200, array $headers = [])
  3.     {
  4.         $this->headers = new ResponseHeaderBag($headers);
  5.         $this->setContent($content);
  6.         $this->setStatusCode($status);
  7.         $this->setProtocolVersion('1.0');
  8.     }
  9.     /**
  1.      * @param  array  $headers
  2.      * @return \Illuminate\Http\Response
  3.      */
  4.     public function make($content ''$status 200, array $headers = [])
  5.     {
  6.         return new Response($content$status$headers);
  7.     }
  8.     /**
  9.      * Create a new "no content" response.
  10.      *
  1.     {
  2.         if (is_array($view)) {
  3.             return $this->make($this->view->first($view$data), $status$headers);
  4.         }
  5.         return $this->make($this->view->make($view$data), $status$headers);
  6.     }
  7.     /**
  8.      * Create a new JSON response instance.
  9.      *
  1.     protected function renderHttpException(HttpExceptionInterface $e)
  2.     {
  3.         $this->registerErrorViewPaths();
  4.         if ($view $this->getHttpExceptionView($e)) {
  5.             return response()->view($view, [
  6.                 'errors' => new ViewErrorBag,
  7.                 'exception' => $e,
  8.             ], $e->getStatusCode(), $e->getHeaders());
  9.         }
  1.         if (! $this->isHttpException($e)) {
  2.             $e = new HttpException(500$e->getMessage(), $e);
  3.         }
  4.         return $this->toIlluminateResponse(
  5.             $this->renderHttpException($e), $e
  6.         )->prepare($request);
  7.     }
  8.     /**
  9.      * Create a Symfony response for the given exception.
  1.      */
  2.     protected function renderExceptionResponse($requestThrowable $e)
  3.     {
  4.         return $this->shouldReturnJson($request$e)
  5.                     ? $this->prepareJsonResponse($request$e)
  6.                     : $this->prepareResponse($request$e);
  7.     }
  8.     /**
  9.      * Convert an authentication exception into a response.
  10.      *
  1.         return match (true) {
  2.             $e instanceof HttpResponseException => $e->getResponse(),
  3.             $e instanceof AuthenticationException => $this->unauthenticated($request$e),
  4.             $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e$request),
  5.             default => $this->renderExceptionResponse($request$e),
  6.         };
  7.     }
  8.     /**
  9.      * Prepare exception for rendering.
  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.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /var/task/app/Http/Middleware/GzipEncodeResponse.php (line 12)
  1. class GzipEncodeResponse
  2. {
  3.     public function handle(Request $requestClosure $next)
  4.     {
  5.         $response $next($request);
  6.         if (function_exists('gzencode') && in_array('gzip'$request->getEncodings(), true)) {
  7.             $response->setContent(gzencode($response->getContent(), 9));
  8.             $response->headers->add([
  9.                 'Content-Encoding' => 'gzip',
  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.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  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.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (! $request->hasSession() || ! $request->user()) {
  6.             return $next($request);
  7.         }
  8.         if ($this->guard()->viaRemember()) {
  9.             $passwordHash explode('|'$request->cookies->get($this->guard()->getRecallerName()))[2] ?? null;
  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.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  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);
in /var/task/vendor/spatie/laravel-referer/src/CaptureReferer.php -> Illuminate\Pipeline\{closure} (line 21)
  1.     public function handle($requestClosure $next)
  2.     {
  3.         $this->referer->putFromRequest($request);
  4.         return $next($request);
  5.     }
  6. }
  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.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  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.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($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.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  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.         $middleware $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  2.         return (new Pipeline($this->container))
  3.                         ->send($request)
  4.                         ->through($middleware)
  5.                         ->then(fn ($request) => $this->prepareResponse(
  6.                             $request$route->run()
  7.                         ));
  8.     }
  9.     /**
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
in /var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> Illuminate\Foundation\Http\{closure} (line 141)
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.                     ]);
  2.                 });
  3.             }
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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 ($psrRequest !== null) {
  2.                 $container->instance(LaravelRequestFetcher::CONTAINER_PSR7_INSTANCE_KEY$psrRequest);
  3.             }
  4.         }
  5.         return $next($request);
  6.     }
  7.     private function resolvePsrRequest(Container $container): ?ServerRequestInterface
  8.     {
  9.         try {
  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.      * @param  string|null  ...$guards
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next, ...$guards)
  5.     {
  6.         $response $next($request);
  7.         if (isset($_ENV['VAPOR_SSM_PATH']) && $response->getStatusCode() === 404) {
  8.             $requestUri $request->getRequestUri();
  9.             if (! in_array(ltrim($requestUri'/'), config('vapor.serve_assets', []))) {
  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.     protected $response;
  3.     public function handle(Request $requestClosure $next)
  4.     {
  5.         $this->response $next($request);
  6.         $shouldIndex $this->shouldIndex($request);
  7.         if (is_bool($shouldIndex)) {
  8.             return $this->responseWithRobots($shouldIndex 'all' 'none');
  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.      */
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /var/task/app/Http/Middleware/HttpsProtocolMiddleware.php (line 19)
  1.     {
  2.         if (app()->environment('production') && ! $request->secure()) {
  3.             return redirect()->secure($request->getRequestUri(), 301);
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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.         if ($this->shouldSpecifyTrustedHosts()) {
  3.             Request::setTrustedHosts(array_filter($this->hosts()));
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the application should specify trusted hosts.
  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.         if (app()->bound(HubInterface::class)) {
  3.             $this->startTransaction($requestapp(HubInterface::class));
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Handle the application termination.
  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.         $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.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
  1.         if (Octane::hasRouteFor($request->getMethod(), '/'.$request->path())) {
  2.             return Octane::invokeRoute($request$request->getMethod(), '/'.$request->path());
  3.         }
  4.         return tap($this->sandbox->make(Kernel::class)->handle($request), function ($response) use ($request) {
  5.             $this->dispatchEvent($this->sandbox, new RequestHandled($this->sandbox$request$response));
  6.         });
  7.     }
  8.     /**
  1.         try {
  2.             $responded false;
  3.             ob_start();
  4.             $response $gateway->handle($request);
  5.             $output ob_get_contents();
  6.             ob_end_clean();
  1.                 new EnsureOnNakedDomain,
  2.                 new RedirectStaticAssets,
  3.                 new EnsureVanityUrlIsNotIndexed,
  4.                 new EnsureBinaryEncoding(),
  5.             ])->then(function ($request) use ($context) {
  6.                 static::$worker->handle($request$context);
  7.                 return static::$response->response;
  8.             });
  9.     }
in /var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :: Laravel\Vapor\Runtime\Octane\{closure} (line 141)
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @param  callable  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($request$next)
  5.     {
  6.         $response $next($request);
  7.         if (static::isBase64EncodingRequired($response)) {
  8.             $response->headers->set('X-Vapor-Base64-Encode''True');
  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.      * @param  callable  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($request$next)
  5.     {
  6.         $response $next($request);
  7.         if ('https://'.$request->getHttpHost() === $_ENV['APP_VANITY_URL']) {
  8.             $response->headers->set('X-Robots-Tag''noindex, nofollow'true);
  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.             return new RedirectResponse($_ENV['ASSET_URL'].'/robots.txt'302, [
  2.                 'Cache-Control' => 'public, max-age=3600',
  3.             ]);
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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.                     $request->fullUrl()
  2.                 ), 301);
  3.             }
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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.             ->through([
  2.                 new EnsureOnNakedDomain,
  3.                 new RedirectStaticAssets,
  4.                 new EnsureVanityUrlIsNotIndexed,
  5.                 new EnsureBinaryEncoding(),
  6.             ])->then(function ($request) use ($context) {
  7.                 static::$worker->handle($request$context);
  8.                 return static::$response->response;
  9.             });
  10.     }
  1.                 $response = new \Illuminate\Http\Response(
  2.                     file_get_contents($_ENV['LAMBDA_TASK_ROOT'].'/503.html'), 503
  3.                 );
  4.             }
  5.         } else {
  6.             $response = static::sendRequest($request$context);
  7.         }
  8.         $content $response instanceof BinaryFileResponse
  9.             $response->getFile()->getContent()
  10.             : $response->getContent();
  1.     public function handle(array $event)
  2.     {
  3.         $request $this->request($event);
  4.         return $this->response(
  5.             Octane::handle($request)
  6.         );
  7.     }
  8.     /**
  9.      * Create a new Octane request from the incoming event.
OctaneHandler->handle(array('version' => '1.0', 'resource' => '$default', 'path' => '/affiliate-worden', 'httpMethod' => 'GET', 'headers' => array('Content-Length' => '0', 'Host' => 'emeals.work', 'User-Agent' => 'claudebot', 'X-Amzn-Trace-Id' => 'Root=1-6605c0c9-6414e3cb0f00544257071be6', 'X-Forwarded-For' => '18.209.209.28, 172.70.174.204', 'X-Forwarded-Port' => '443', 'X-Forwarded-Proto' => 'https', 'accept' => '*/*', 'accept-encoding' => 'gzip, br', 'cdn-loop' => 'cloudflare', 'cf-connecting-ip' => '18.209.209.28', 'cf-ipcountry' => 'US', 'cf-ray' => '86b9ec8a3aa382d5-IAD', 'cf-visitor' => '{"scheme":"https"}'), 'multiValueHeaders' => array('Content-Length' => array('0'), 'Host' => array('emeals.work'), 'User-Agent' => array('claudebot'), 'X-Amzn-Trace-Id' => array('Root=1-6605c0c9-6414e3cb0f00544257071be6'), 'X-Forwarded-For' => array('18.209.209.28, 172.70.174.204'), 'X-Forwarded-Port' => array('443'), 'X-Forwarded-Proto' => array('https'), 'accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'cdn-loop' => array('cloudflare'), 'cf-connecting-ip' => array('18.209.209.28'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b9ec8a3aa382d5-IAD'), 'cf-visitor' => array('{"scheme":"https"}')), 'queryStringParameters' => null, 'multiValueQueryStringParameters' => null, 'requestContext' => array('accountId' => '320299171002', 'apiId' => '58o7hik737', 'domainName' => 'emeals.work', 'domainPrefix' => 'emeals', 'extendedRequestId' => 'VWsPigYGliAEMrA=', 'httpMethod' => 'GET', 'identity' => array('accessKey' => null, 'accountId' => null, 'caller' => null, 'cognitoAmr' => null, 'cognitoAuthenticationProvider' => null, 'cognitoAuthenticationType' => null, 'cognitoIdentityId' => null, 'cognitoIdentityPoolId' => null, 'principalOrgId' => null, 'sourceIp' => '172.70.174.204', 'user' => null, 'userAgent' => 'claudebot', 'userArn' => null), 'path' => '/staging/affiliate-worden', 'protocol' => 'HTTP/1.1', 'requestId' => 'VWsPigYGliAEMrA=', 'requestTime' => '28/Mar/2024:19:11:05 +0000', 'requestTimeEpoch' => 1711653065556, 'resourceId' => '$default', 'resourcePath' => '$default', 'stage' => 'staging'), 'pathParameters' => null, 'stageVariables' => null, 'body' => null, 'isBase64Encoded' => false)) in /var/task/octaneRuntime.php (line 101)
  1. $lambdaRuntime LambdaRuntime::fromEnvironmentVariable();
  2. while (true) {
  3.     $lambdaRuntime->nextInvocation(function ($invocationId$event) {
  4.         return OctaneHttpHandlerFactory::make($event)
  5.                     ->handle($event)
  6.                     ->toApiGatewayFormat();
  7.     });
  8.     LambdaContainer::terminateIfInvocationLimitHasBeenReached(
  9.         ++$invocations, (int) ($_ENV['VAPOR_MAX_REQUESTS'] ?? 250)
  1.         [$invocationId$event] = LambdaInvocation::next($this->apiUrl);
  2.         $_ENV['AWS_REQUEST_ID'] = $invocationId;
  3.         try {
  4.             $this->notifyLambdaOfResponse($invocationId$callback($invocationId$event));
  5.         } catch (Throwable $error) {
  6.             $this->handleException($invocationId$error);
  7.             exit(1);
  8.         }
LambdaRuntime->nextInvocation(object(Closure)) in /var/task/octaneRuntime.php (line 99)
  1. $invocations 0;
  2. $lambdaRuntime LambdaRuntime::fromEnvironmentVariable();
  3. while (true) {
  4.     $lambdaRuntime->nextInvocation(function ($invocationId$event) {
  5.         return OctaneHttpHandlerFactory::make($event)
  6.                     ->handle($event)
  7.                     ->toApiGatewayFormat();
  8.     });
require('/var/task/octaneRuntime.php') in /var/task/runtime.php (line 33)
  1. if (isset($_ENV['APP_RUNNING_IN_CONSOLE']) && $_ENV['APP_RUNNING_IN_CONSOLE'] === 'true') {
  2.     return require __DIR__.'/cliRuntime.php';
  3. }
  4. if (isset($_ENV['APP_RUNNING_IN_OCTANE']) && $_ENV['APP_RUNNING_IN_OCTANE'] === 'true') {
  5.     return require __DIR__.'/octaneRuntime.php';
  6. }
  7. return require __DIR__.'/fpmRuntime.php';
require('/var/task/runtime.php') in /opt/bootstrap.php (line 6)
  1. <?php
  2. $appRoot getenv('LAMBDA_TASK_ROOT');
  3. require $appRoot.'/runtime.php';

Illuminate\View\ ViewException

Unable to locate file in Vite manifest: resources/css/web/web.css. (View: /var/task/resources/views/web/layouts/error.blade.php)

  1.      * @throws \Exception
  2.      */
  3.     protected function chunk($manifest$file)
  4.     {
  5.         if (! isset($manifest[$file])) {
  6.             throw new Exception("Unable to locate file in Vite manifest: {$file}.");
  7.         }
  8.         return $manifest[$file];
  9.     }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      * {@inheritdoc}
  2.      */
  3.     public function get($path, array $data = [])
  4.     {
  5.         if (!Inspector::canAddSegments()) {
  6.             return $this->engine->get($path$data);
  7.         }
  8.         $label 'view::'.$this->viewFactory->shared(self::SHARED_KEYbasename($path));
  9.         return Inspector::addSegment(function (Segment $segment) use ($path$data) {
  1.         $span $parentSpan->startChild($context);
  2.         SentrySdk::getCurrentHub()->setSpan($span);
  3.         $result $this->engine->get($path$data);
  4.         $span->finish();
  5.         SentrySdk::getCurrentHub()->setSpan($parentSpan);
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         <div class="mt-10 flex justify-center">
  2.             <a href="<?php echo e(route('web.home')); ?>" class="text-sm font-semibold leading-7 text-white"><span aria-hidden="true">&larr;</span> Naar de homepage</a>
  3.         </div>
  4.     </div>
  5. </main>
  6. <?php echo $__env->make('web.layouts.error'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /var/task/resources/views/errors/404.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      * {@inheritdoc}
  2.      */
  3.     public function get($path, array $data = [])
  4.     {
  5.         if (!Inspector::canAddSegments()) {
  6.             return $this->engine->get($path$data);
  7.         }
  8.         $label 'view::'.$this->viewFactory->shared(self::SHARED_KEYbasename($path));
  9.         return Inspector::addSegment(function (Segment $segment) use ($path$data) {
  1.         $span $parentSpan->startChild($context);
  2.         SentrySdk::getCurrentHub()->setSpan($span);
  3.         $result $this->engine->get($path$data);
  4.         $span->finish();
  5.         SentrySdk::getCurrentHub()->setSpan($parentSpan);
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         // If this content implements the "Renderable" interface then we will call the
  2.         // render method on the object so we will avoid any "__toString" exceptions
  3.         // that might be thrown and have their errors obscured by PHP's handling.
  4.         elseif ($content instanceof Renderable) {
  5.             $content $content->render();
  6.         }
  7.         parent::setContent($content);
  8.         return $this;
  1.      */
  2.     public function __construct($content ''$status 200, array $headers = [])
  3.     {
  4.         $this->headers = new ResponseHeaderBag($headers);
  5.         $this->setContent($content);
  6.         $this->setStatusCode($status);
  7.         $this->setProtocolVersion('1.0');
  8.     }
  9.     /**
  1.      * @param  array  $headers
  2.      * @return \Illuminate\Http\Response
  3.      */
  4.     public function make($content ''$status 200, array $headers = [])
  5.     {
  6.         return new Response($content$status$headers);
  7.     }
  8.     /**
  9.      * Create a new "no content" response.
  10.      *
  1.     {
  2.         if (is_array($view)) {
  3.             return $this->make($this->view->first($view$data), $status$headers);
  4.         }
  5.         return $this->make($this->view->make($view$data), $status$headers);
  6.     }
  7.     /**
  8.      * Create a new JSON response instance.
  9.      *
  1.     protected function renderHttpException(HttpExceptionInterface $e)
  2.     {
  3.         $this->registerErrorViewPaths();
  4.         if ($view $this->getHttpExceptionView($e)) {
  5.             return response()->view($view, [
  6.                 'errors' => new ViewErrorBag,
  7.                 'exception' => $e,
  8.             ], $e->getStatusCode(), $e->getHeaders());
  9.         }
  1.         if (! $this->isHttpException($e)) {
  2.             $e = new HttpException(500$e->getMessage(), $e);
  3.         }
  4.         return $this->toIlluminateResponse(
  5.             $this->renderHttpException($e), $e
  6.         )->prepare($request);
  7.     }
  8.     /**
  9.      * Create a Symfony response for the given exception.
  1.      */
  2.     protected function renderExceptionResponse($requestThrowable $e)
  3.     {
  4.         return $this->shouldReturnJson($request$e)
  5.                     ? $this->prepareJsonResponse($request$e)
  6.                     : $this->prepareResponse($request$e);
  7.     }
  8.     /**
  9.      * Convert an authentication exception into a response.
  10.      *
  1.         return match (true) {
  2.             $e instanceof HttpResponseException => $e->getResponse(),
  3.             $e instanceof AuthenticationException => $this->unauthenticated($request$e),
  4.             $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e$request),
  5.             default => $this->renderExceptionResponse($request$e),
  6.         };
  7.     }
  8.     /**
  9.      * Prepare exception for rendering.
  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.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /var/task/app/Http/Middleware/GzipEncodeResponse.php (line 12)
  1. class GzipEncodeResponse
  2. {
  3.     public function handle(Request $requestClosure $next)
  4.     {
  5.         $response $next($request);
  6.         if (function_exists('gzencode') && in_array('gzip'$request->getEncodings(), true)) {
  7.             $response->setContent(gzencode($response->getContent(), 9));
  8.             $response->headers->add([
  9.                 'Content-Encoding' => 'gzip',
  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.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  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.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (! $request->hasSession() || ! $request->user()) {
  6.             return $next($request);
  7.         }
  8.         if ($this->guard()->viaRemember()) {
  9.             $passwordHash explode('|'$request->cookies->get($this->guard()->getRecallerName()))[2] ?? null;
  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.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  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);
in /var/task/vendor/spatie/laravel-referer/src/CaptureReferer.php -> Illuminate\Pipeline\{closure} (line 21)
  1.     public function handle($requestClosure $next)
  2.     {
  3.         $this->referer->putFromRequest($request);
  4.         return $next($request);
  5.     }
  6. }
  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.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  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.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($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.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  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.         $middleware $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  2.         return (new Pipeline($this->container))
  3.                         ->send($request)
  4.                         ->through($middleware)
  5.                         ->then(fn ($request) => $this->prepareResponse(
  6.                             $request$route->run()
  7.                         ));
  8.     }
  9.     /**
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
in /var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> Illuminate\Foundation\Http\{closure} (line 141)
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.                     ]);
  2.                 });
  3.             }
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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 ($psrRequest !== null) {
  2.                 $container->instance(LaravelRequestFetcher::CONTAINER_PSR7_INSTANCE_KEY$psrRequest);
  3.             }
  4.         }
  5.         return $next($request);
  6.     }
  7.     private function resolvePsrRequest(Container $container): ?ServerRequestInterface
  8.     {
  9.         try {
  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.      * @param  string|null  ...$guards
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next, ...$guards)
  5.     {
  6.         $response $next($request);
  7.         if (isset($_ENV['VAPOR_SSM_PATH']) && $response->getStatusCode() === 404) {
  8.             $requestUri $request->getRequestUri();
  9.             if (! in_array(ltrim($requestUri'/'), config('vapor.serve_assets', []))) {
  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.     protected $response;
  3.     public function handle(Request $requestClosure $next)
  4.     {
  5.         $this->response $next($request);
  6.         $shouldIndex $this->shouldIndex($request);
  7.         if (is_bool($shouldIndex)) {
  8.             return $this->responseWithRobots($shouldIndex 'all' 'none');
  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.      */
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /var/task/app/Http/Middleware/HttpsProtocolMiddleware.php (line 19)
  1.     {
  2.         if (app()->environment('production') && ! $request->secure()) {
  3.             return redirect()->secure($request->getRequestUri(), 301);
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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.         if ($this->shouldSpecifyTrustedHosts()) {
  3.             Request::setTrustedHosts(array_filter($this->hosts()));
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the application should specify trusted hosts.
  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.         if (app()->bound(HubInterface::class)) {
  3.             $this->startTransaction($requestapp(HubInterface::class));
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Handle the application termination.
  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.         $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.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
  1.         if (Octane::hasRouteFor($request->getMethod(), '/'.$request->path())) {
  2.             return Octane::invokeRoute($request$request->getMethod(), '/'.$request->path());
  3.         }
  4.         return tap($this->sandbox->make(Kernel::class)->handle($request), function ($response) use ($request) {
  5.             $this->dispatchEvent($this->sandbox, new RequestHandled($this->sandbox$request$response));
  6.         });
  7.     }
  8.     /**
  1.         try {
  2.             $responded false;
  3.             ob_start();
  4.             $response $gateway->handle($request);
  5.             $output ob_get_contents();
  6.             ob_end_clean();
  1.                 new EnsureOnNakedDomain,
  2.                 new RedirectStaticAssets,
  3.                 new EnsureVanityUrlIsNotIndexed,
  4.                 new EnsureBinaryEncoding(),
  5.             ])->then(function ($request) use ($context) {
  6.                 static::$worker->handle($request$context);
  7.                 return static::$response->response;
  8.             });
  9.     }
in /var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :: Laravel\Vapor\Runtime\Octane\{closure} (line 141)
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @param  callable  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($request$next)
  5.     {
  6.         $response $next($request);
  7.         if (static::isBase64EncodingRequired($response)) {
  8.             $response->headers->set('X-Vapor-Base64-Encode''True');
  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.      * @param  callable  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($request$next)
  5.     {
  6.         $response $next($request);
  7.         if ('https://'.$request->getHttpHost() === $_ENV['APP_VANITY_URL']) {
  8.             $response->headers->set('X-Robots-Tag''noindex, nofollow'true);
  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.             return new RedirectResponse($_ENV['ASSET_URL'].'/robots.txt'302, [
  2.                 'Cache-Control' => 'public, max-age=3600',
  3.             ]);
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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.                     $request->fullUrl()
  2.                 ), 301);
  3.             }
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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.             ->through([
  2.                 new EnsureOnNakedDomain,
  3.                 new RedirectStaticAssets,
  4.                 new EnsureVanityUrlIsNotIndexed,
  5.                 new EnsureBinaryEncoding(),
  6.             ])->then(function ($request) use ($context) {
  7.                 static::$worker->handle($request$context);
  8.                 return static::$response->response;
  9.             });
  10.     }
  1.                 $response = new \Illuminate\Http\Response(
  2.                     file_get_contents($_ENV['LAMBDA_TASK_ROOT'].'/503.html'), 503
  3.                 );
  4.             }
  5.         } else {
  6.             $response = static::sendRequest($request$context);
  7.         }
  8.         $content $response instanceof BinaryFileResponse
  9.             $response->getFile()->getContent()
  10.             : $response->getContent();
  1.     public function handle(array $event)
  2.     {
  3.         $request $this->request($event);
  4.         return $this->response(
  5.             Octane::handle($request)
  6.         );
  7.     }
  8.     /**
  9.      * Create a new Octane request from the incoming event.
OctaneHandler->handle(array('version' => '1.0', 'resource' => '$default', 'path' => '/affiliate-worden', 'httpMethod' => 'GET', 'headers' => array('Content-Length' => '0', 'Host' => 'emeals.work', 'User-Agent' => 'claudebot', 'X-Amzn-Trace-Id' => 'Root=1-6605c0c9-6414e3cb0f00544257071be6', 'X-Forwarded-For' => '18.209.209.28, 172.70.174.204', 'X-Forwarded-Port' => '443', 'X-Forwarded-Proto' => 'https', 'accept' => '*/*', 'accept-encoding' => 'gzip, br', 'cdn-loop' => 'cloudflare', 'cf-connecting-ip' => '18.209.209.28', 'cf-ipcountry' => 'US', 'cf-ray' => '86b9ec8a3aa382d5-IAD', 'cf-visitor' => '{"scheme":"https"}'), 'multiValueHeaders' => array('Content-Length' => array('0'), 'Host' => array('emeals.work'), 'User-Agent' => array('claudebot'), 'X-Amzn-Trace-Id' => array('Root=1-6605c0c9-6414e3cb0f00544257071be6'), 'X-Forwarded-For' => array('18.209.209.28, 172.70.174.204'), 'X-Forwarded-Port' => array('443'), 'X-Forwarded-Proto' => array('https'), 'accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'cdn-loop' => array('cloudflare'), 'cf-connecting-ip' => array('18.209.209.28'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b9ec8a3aa382d5-IAD'), 'cf-visitor' => array('{"scheme":"https"}')), 'queryStringParameters' => null, 'multiValueQueryStringParameters' => null, 'requestContext' => array('accountId' => '320299171002', 'apiId' => '58o7hik737', 'domainName' => 'emeals.work', 'domainPrefix' => 'emeals', 'extendedRequestId' => 'VWsPigYGliAEMrA=', 'httpMethod' => 'GET', 'identity' => array('accessKey' => null, 'accountId' => null, 'caller' => null, 'cognitoAmr' => null, 'cognitoAuthenticationProvider' => null, 'cognitoAuthenticationType' => null, 'cognitoIdentityId' => null, 'cognitoIdentityPoolId' => null, 'principalOrgId' => null, 'sourceIp' => '172.70.174.204', 'user' => null, 'userAgent' => 'claudebot', 'userArn' => null), 'path' => '/staging/affiliate-worden', 'protocol' => 'HTTP/1.1', 'requestId' => 'VWsPigYGliAEMrA=', 'requestTime' => '28/Mar/2024:19:11:05 +0000', 'requestTimeEpoch' => 1711653065556, 'resourceId' => '$default', 'resourcePath' => '$default', 'stage' => 'staging'), 'pathParameters' => null, 'stageVariables' => null, 'body' => null, 'isBase64Encoded' => false)) in /var/task/octaneRuntime.php (line 101)
  1. $lambdaRuntime LambdaRuntime::fromEnvironmentVariable();
  2. while (true) {
  3.     $lambdaRuntime->nextInvocation(function ($invocationId$event) {
  4.         return OctaneHttpHandlerFactory::make($event)
  5.                     ->handle($event)
  6.                     ->toApiGatewayFormat();
  7.     });
  8.     LambdaContainer::terminateIfInvocationLimitHasBeenReached(
  9.         ++$invocations, (int) ($_ENV['VAPOR_MAX_REQUESTS'] ?? 250)
  1.         [$invocationId$event] = LambdaInvocation::next($this->apiUrl);
  2.         $_ENV['AWS_REQUEST_ID'] = $invocationId;
  3.         try {
  4.             $this->notifyLambdaOfResponse($invocationId$callback($invocationId$event));
  5.         } catch (Throwable $error) {
  6.             $this->handleException($invocationId$error);
  7.             exit(1);
  8.         }
LambdaRuntime->nextInvocation(object(Closure)) in /var/task/octaneRuntime.php (line 99)
  1. $invocations 0;
  2. $lambdaRuntime LambdaRuntime::fromEnvironmentVariable();
  3. while (true) {
  4.     $lambdaRuntime->nextInvocation(function ($invocationId$event) {
  5.         return OctaneHttpHandlerFactory::make($event)
  6.                     ->handle($event)
  7.                     ->toApiGatewayFormat();
  8.     });
require('/var/task/octaneRuntime.php') in /var/task/runtime.php (line 33)
  1. if (isset($_ENV['APP_RUNNING_IN_CONSOLE']) && $_ENV['APP_RUNNING_IN_CONSOLE'] === 'true') {
  2.     return require __DIR__.'/cliRuntime.php';
  3. }
  4. if (isset($_ENV['APP_RUNNING_IN_OCTANE']) && $_ENV['APP_RUNNING_IN_OCTANE'] === 'true') {
  5.     return require __DIR__.'/octaneRuntime.php';
  6. }
  7. return require __DIR__.'/fpmRuntime.php';
require('/var/task/runtime.php') in /opt/bootstrap.php (line 6)
  1. <?php
  2. $appRoot getenv('LAMBDA_TASK_ROOT');
  3. require $appRoot.'/runtime.php';

Exception

Unable to locate file in Vite manifest: resources/css/web/web.css.

  1.      * @throws \Exception
  2.      */
  3.     protected function chunk($manifest$file)
  4.     {
  5.         if (! isset($manifest[$file])) {
  6.             throw new Exception("Unable to locate file in Vite manifest: {$file}.");
  7.         }
  8.         return $manifest[$file];
  9.     }
  1.         $tags collect();
  2.         $preloads collect();
  3.         foreach ($entrypoints as $entrypoint) {
  4.             $chunk $this->chunk($manifest$entrypoint);
  5.             $preloads->push([
  6.                 $chunk['src'],
  7.                 $this->assetPath("{$buildDirectory}/{$chunk['file']}"),
  8.                 $chunk,
Vite->__invoke(object(Collection)) in /tmp/storage/framework/views/a63cb094a2deaaa126d789d7a8741276.php (line 55)
  1.                 'event_callback': function () {
  2.                     <?php echo view('analytics-event-tracking::sendCliendId'); ?>
  3.                 }
  4.             });
  5.         </script>
  6.         <?php echo app('Illuminate\Foundation\Vite')(['resources/css/web/web.css']); ?>
  7. </head>
  8. <body >
  9. <?php echo $__env->yieldContent('content'); ?>
  10. </body>
  11. </html>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      * {@inheritdoc}
  2.      */
  3.     public function get($path, array $data = [])
  4.     {
  5.         if (!Inspector::canAddSegments()) {
  6.             return $this->engine->get($path$data);
  7.         }
  8.         $label 'view::'.$this->viewFactory->shared(self::SHARED_KEYbasename($path));
  9.         return Inspector::addSegment(function (Segment $segment) use ($path$data) {
  1.         $span $parentSpan->startChild($context);
  2.         SentrySdk::getCurrentHub()->setSpan($span);
  3.         $result $this->engine->get($path$data);
  4.         $span->finish();
  5.         SentrySdk::getCurrentHub()->setSpan($parentSpan);
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         <div class="mt-10 flex justify-center">
  2.             <a href="<?php echo e(route('web.home')); ?>" class="text-sm font-semibold leading-7 text-white"><span aria-hidden="true">&larr;</span> Naar de homepage</a>
  3.         </div>
  4.     </div>
  5. </main>
  6. <?php echo $__env->make('web.layouts.error'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /var/task/resources/views/errors/404.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      * {@inheritdoc}
  2.      */
  3.     public function get($path, array $data = [])
  4.     {
  5.         if (!Inspector::canAddSegments()) {
  6.             return $this->engine->get($path$data);
  7.         }
  8.         $label 'view::'.$this->viewFactory->shared(self::SHARED_KEYbasename($path));
  9.         return Inspector::addSegment(function (Segment $segment) use ($path$data) {
  1.         $span $parentSpan->startChild($context);
  2.         SentrySdk::getCurrentHub()->setSpan($span);
  3.         $result $this->engine->get($path$data);
  4.         $span->finish();
  5.         SentrySdk::getCurrentHub()->setSpan($parentSpan);
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.         // If this content implements the "Renderable" interface then we will call the
  2.         // render method on the object so we will avoid any "__toString" exceptions
  3.         // that might be thrown and have their errors obscured by PHP's handling.
  4.         elseif ($content instanceof Renderable) {
  5.             $content $content->render();
  6.         }
  7.         parent::setContent($content);
  8.         return $this;
  1.      */
  2.     public function __construct($content ''$status 200, array $headers = [])
  3.     {
  4.         $this->headers = new ResponseHeaderBag($headers);
  5.         $this->setContent($content);
  6.         $this->setStatusCode($status);
  7.         $this->setProtocolVersion('1.0');
  8.     }
  9.     /**
  1.      * @param  array  $headers
  2.      * @return \Illuminate\Http\Response
  3.      */
  4.     public function make($content ''$status 200, array $headers = [])
  5.     {
  6.         return new Response($content$status$headers);
  7.     }
  8.     /**
  9.      * Create a new "no content" response.
  10.      *
  1.     {
  2.         if (is_array($view)) {
  3.             return $this->make($this->view->first($view$data), $status$headers);
  4.         }
  5.         return $this->make($this->view->make($view$data), $status$headers);
  6.     }
  7.     /**
  8.      * Create a new JSON response instance.
  9.      *
  1.     protected function renderHttpException(HttpExceptionInterface $e)
  2.     {
  3.         $this->registerErrorViewPaths();
  4.         if ($view $this->getHttpExceptionView($e)) {
  5.             return response()->view($view, [
  6.                 'errors' => new ViewErrorBag,
  7.                 'exception' => $e,
  8.             ], $e->getStatusCode(), $e->getHeaders());
  9.         }
  1.         if (! $this->isHttpException($e)) {
  2.             $e = new HttpException(500$e->getMessage(), $e);
  3.         }
  4.         return $this->toIlluminateResponse(
  5.             $this->renderHttpException($e), $e
  6.         )->prepare($request);
  7.     }
  8.     /**
  9.      * Create a Symfony response for the given exception.
  1.      */
  2.     protected function renderExceptionResponse($requestThrowable $e)
  3.     {
  4.         return $this->shouldReturnJson($request$e)
  5.                     ? $this->prepareJsonResponse($request$e)
  6.                     : $this->prepareResponse($request$e);
  7.     }
  8.     /**
  9.      * Convert an authentication exception into a response.
  10.      *
  1.         return match (true) {
  2.             $e instanceof HttpResponseException => $e->getResponse(),
  3.             $e instanceof AuthenticationException => $this->unauthenticated($request$e),
  4.             $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e$request),
  5.             default => $this->renderExceptionResponse($request$e),
  6.         };
  7.     }
  8.     /**
  9.      * Prepare exception for rendering.
  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.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /var/task/app/Http/Middleware/GzipEncodeResponse.php (line 12)
  1. class GzipEncodeResponse
  2. {
  3.     public function handle(Request $requestClosure $next)
  4.     {
  5.         $response $next($request);
  6.         if (function_exists('gzencode') && in_array('gzip'$request->getEncodings(), true)) {
  7.             $response->setContent(gzencode($response->getContent(), 9));
  8.             $response->headers->add([
  9.                 'Content-Encoding' => 'gzip',
  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.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  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.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (! $request->hasSession() || ! $request->user()) {
  6.             return $next($request);
  7.         }
  8.         if ($this->guard()->viaRemember()) {
  9.             $passwordHash explode('|'$request->cookies->get($this->guard()->getRecallerName()))[2] ?? null;
  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.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  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);
in /var/task/vendor/spatie/laravel-referer/src/CaptureReferer.php -> Illuminate\Pipeline\{closure} (line 21)
  1.     public function handle($requestClosure $next)
  2.     {
  3.         $this->referer->putFromRequest($request);
  4.         return $next($request);
  5.     }
  6. }
  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.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  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.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($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.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  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.         $middleware $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  2.         return (new Pipeline($this->container))
  3.                         ->send($request)
  4.                         ->through($middleware)
  5.                         ->then(fn ($request) => $this->prepareResponse(
  6.                             $request$route->run()
  7.                         ));
  8.     }
  9.     /**
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
in /var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> Illuminate\Foundation\Http\{closure} (line 141)
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.                     ]);
  2.                 });
  3.             }
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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 ($psrRequest !== null) {
  2.                 $container->instance(LaravelRequestFetcher::CONTAINER_PSR7_INSTANCE_KEY$psrRequest);
  3.             }
  4.         }
  5.         return $next($request);
  6.     }
  7.     private function resolvePsrRequest(Container $container): ?ServerRequestInterface
  8.     {
  9.         try {
  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.      * @param  string|null  ...$guards
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next, ...$guards)
  5.     {
  6.         $response $next($request);
  7.         if (isset($_ENV['VAPOR_SSM_PATH']) && $response->getStatusCode() === 404) {
  8.             $requestUri $request->getRequestUri();
  9.             if (! in_array(ltrim($requestUri'/'), config('vapor.serve_assets', []))) {
  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.     protected $response;
  3.     public function handle(Request $requestClosure $next)
  4.     {
  5.         $this->response $next($request);
  6.         $shouldIndex $this->shouldIndex($request);
  7.         if (is_bool($shouldIndex)) {
  8.             return $this->responseWithRobots($shouldIndex 'all' 'none');
  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.      */
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /var/task/app/Http/Middleware/HttpsProtocolMiddleware.php (line 19)
  1.     {
  2.         if (app()->environment('production') && ! $request->secure()) {
  3.             return redirect()->secure($request->getRequestUri(), 301);
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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.         if ($this->shouldSpecifyTrustedHosts()) {
  3.             Request::setTrustedHosts(array_filter($this->hosts()));
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the application should specify trusted hosts.
  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.         if (app()->bound(HubInterface::class)) {
  3.             $this->startTransaction($requestapp(HubInterface::class));
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Handle the application termination.
  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.         $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.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
  1.         if (Octane::hasRouteFor($request->getMethod(), '/'.$request->path())) {
  2.             return Octane::invokeRoute($request$request->getMethod(), '/'.$request->path());
  3.         }
  4.         return tap($this->sandbox->make(Kernel::class)->handle($request), function ($response) use ($request) {
  5.             $this->dispatchEvent($this->sandbox, new RequestHandled($this->sandbox$request$response));
  6.         });
  7.     }
  8.     /**
  1.         try {
  2.             $responded false;
  3.             ob_start();
  4.             $response $gateway->handle($request);
  5.             $output ob_get_contents();
  6.             ob_end_clean();
  1.                 new EnsureOnNakedDomain,
  2.                 new RedirectStaticAssets,
  3.                 new EnsureVanityUrlIsNotIndexed,
  4.                 new EnsureBinaryEncoding(),
  5.             ])->then(function ($request) use ($context) {
  6.                 static::$worker->handle($request$context);
  7.                 return static::$response->response;
  8.             });
  9.     }
in /var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :: Laravel\Vapor\Runtime\Octane\{closure} (line 141)
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      * @param  callable  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($request$next)
  5.     {
  6.         $response $next($request);
  7.         if (static::isBase64EncodingRequired($response)) {
  8.             $response->headers->set('X-Vapor-Base64-Encode''True');
  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.      * @param  callable  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($request$next)
  5.     {
  6.         $response $next($request);
  7.         if ('https://'.$request->getHttpHost() === $_ENV['APP_VANITY_URL']) {
  8.             $response->headers->set('X-Robots-Tag''noindex, nofollow'true);
  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.             return new RedirectResponse($_ENV['ASSET_URL'].'/robots.txt'302, [
  2.                 'Cache-Control' => 'public, max-age=3600',
  3.             ]);
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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.                     $request->fullUrl()
  2.                 ), 301);
  3.             }
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  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.             ->through([
  2.                 new EnsureOnNakedDomain,
  3.                 new RedirectStaticAssets,
  4.                 new EnsureVanityUrlIsNotIndexed,
  5.                 new EnsureBinaryEncoding(),
  6.             ])->then(function ($request) use ($context) {
  7.                 static::$worker->handle($request$context);
  8.                 return static::$response->response;
  9.             });
  10.     }
  1.                 $response = new \Illuminate\Http\Response(
  2.                     file_get_contents($_ENV['LAMBDA_TASK_ROOT'].'/503.html'), 503
  3.                 );
  4.             }
  5.         } else {
  6.             $response = static::sendRequest($request$context);
  7.         }
  8.         $content $response instanceof BinaryFileResponse
  9.             $response->getFile()->getContent()
  10.             : $response->getContent();
  1.     public function handle(array $event)
  2.     {
  3.         $request $this->request($event);
  4.         return $this->response(
  5.             Octane::handle($request)
  6.         );
  7.     }
  8.     /**
  9.      * Create a new Octane request from the incoming event.
OctaneHandler->handle(array('version' => '1.0', 'resource' => '$default', 'path' => '/affiliate-worden', 'httpMethod' => 'GET', 'headers' => array('Content-Length' => '0', 'Host' => 'emeals.work', 'User-Agent' => 'claudebot', 'X-Amzn-Trace-Id' => 'Root=1-6605c0c9-6414e3cb0f00544257071be6', 'X-Forwarded-For' => '18.209.209.28, 172.70.174.204', 'X-Forwarded-Port' => '443', 'X-Forwarded-Proto' => 'https', 'accept' => '*/*', 'accept-encoding' => 'gzip, br', 'cdn-loop' => 'cloudflare', 'cf-connecting-ip' => '18.209.209.28', 'cf-ipcountry' => 'US', 'cf-ray' => '86b9ec8a3aa382d5-IAD', 'cf-visitor' => '{"scheme":"https"}'), 'multiValueHeaders' => array('Content-Length' => array('0'), 'Host' => array('emeals.work'), 'User-Agent' => array('claudebot'), 'X-Amzn-Trace-Id' => array('Root=1-6605c0c9-6414e3cb0f00544257071be6'), 'X-Forwarded-For' => array('18.209.209.28, 172.70.174.204'), 'X-Forwarded-Port' => array('443'), 'X-Forwarded-Proto' => array('https'), 'accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'cdn-loop' => array('cloudflare'), 'cf-connecting-ip' => array('18.209.209.28'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b9ec8a3aa382d5-IAD'), 'cf-visitor' => array('{"scheme":"https"}')), 'queryStringParameters' => null, 'multiValueQueryStringParameters' => null, 'requestContext' => array('accountId' => '320299171002', 'apiId' => '58o7hik737', 'domainName' => 'emeals.work', 'domainPrefix' => 'emeals', 'extendedRequestId' => 'VWsPigYGliAEMrA=', 'httpMethod' => 'GET', 'identity' => array('accessKey' => null, 'accountId' => null, 'caller' => null, 'cognitoAmr' => null, 'cognitoAuthenticationProvider' => null, 'cognitoAuthenticationType' => null, 'cognitoIdentityId' => null, 'cognitoIdentityPoolId' => null, 'principalOrgId' => null, 'sourceIp' => '172.70.174.204', 'user' => null, 'userAgent' => 'claudebot', 'userArn' => null), 'path' => '/staging/affiliate-worden', 'protocol' => 'HTTP/1.1', 'requestId' => 'VWsPigYGliAEMrA=', 'requestTime' => '28/Mar/2024:19:11:05 +0000', 'requestTimeEpoch' => 1711653065556, 'resourceId' => '$default', 'resourcePath' => '$default', 'stage' => 'staging'), 'pathParameters' => null, 'stageVariables' => null, 'body' => null, 'isBase64Encoded' => false)) in /var/task/octaneRuntime.php (line 101)
  1. $lambdaRuntime LambdaRuntime::fromEnvironmentVariable();
  2. while (true) {
  3.     $lambdaRuntime->nextInvocation(function ($invocationId$event) {
  4.         return OctaneHttpHandlerFactory::make($event)
  5.                     ->handle($event)
  6.                     ->toApiGatewayFormat();
  7.     });
  8.     LambdaContainer::terminateIfInvocationLimitHasBeenReached(
  9.         ++$invocations, (int) ($_ENV['VAPOR_MAX_REQUESTS'] ?? 250)
  1.         [$invocationId$event] = LambdaInvocation::next($this->apiUrl);
  2.         $_ENV['AWS_REQUEST_ID'] = $invocationId;
  3.         try {
  4.             $this->notifyLambdaOfResponse($invocationId$callback($invocationId$event));
  5.         } catch (Throwable $error) {
  6.             $this->handleException($invocationId$error);
  7.             exit(1);
  8.         }
LambdaRuntime->nextInvocation(object(Closure)) in /var/task/octaneRuntime.php (line 99)
  1. $invocations 0;
  2. $lambdaRuntime LambdaRuntime::fromEnvironmentVariable();
  3. while (true) {
  4.     $lambdaRuntime->nextInvocation(function ($invocationId$event) {
  5.         return OctaneHttpHandlerFactory::make($event)
  6.                     ->handle($event)
  7.                     ->toApiGatewayFormat();
  8.     });
require('/var/task/octaneRuntime.php') in /var/task/runtime.php (line 33)
  1. if (isset($_ENV['APP_RUNNING_IN_CONSOLE']) && $_ENV['APP_RUNNING_IN_CONSOLE'] === 'true') {
  2.     return require __DIR__.'/cliRuntime.php';
  3. }
  4. if (isset($_ENV['APP_RUNNING_IN_OCTANE']) && $_ENV['APP_RUNNING_IN_OCTANE'] === 'true') {
  5.     return require __DIR__.'/octaneRuntime.php';
  6. }
  7. return require __DIR__.'/fpmRuntime.php';
require('/var/task/runtime.php') in /opt/bootstrap.php (line 6)
  1. <?php
  2. $appRoot getenv('LAMBDA_TASK_ROOT');
  3. require $appRoot.'/runtime.php';

Stack Traces 3

[3/3] ViewException
Illuminate\View\ViewException:
Unable to locate file in Vite manifest: resources/css/web/web.css. (View: /var/task/resources/views/web/layouts/error.blade.php) (View: /var/task/resources/views/web/layouts/error.blade.php)

  at /var/task/vendor/laravel/framework/src/Illuminate/Foundation/Vite.php:737
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 1)
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/tmp/storage/framework/views/133c32efde8a094c97253b999c4bbf99.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/var/task/resources/views/errors/404.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/inspector-apm/inspector-laravel/src/Views/ViewEngineDecorator.php:38)
  at Inspector\Laravel\Views\ViewEngineDecorator->get('/var/task/resources/views/errors/404.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Tracing/ViewEngineDecorator.php:45)
  at Sentry\Laravel\Tracing\ViewEngineDecorator->get('/var/task/resources/views/errors/404.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:195)
  at Illuminate\View\View->getContents()
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:178)
  at Illuminate\View\View->renderContents()
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:147)
  at Illuminate\View\View->render()
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent(object(View))
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct(object(View), 404, array())
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/ResponseFactory.php:57)
  at Illuminate\Routing\ResponseFactory->make(object(View), 404, array())
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/ResponseFactory.php:87)
  at Illuminate\Routing\ResponseFactory->view('errors::404', array('errors' => object(ViewErrorBag), 'exception' => object(NotFoundHttpException)), 404, array())
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:643)
  at Illuminate\Foundation\Exceptions\Handler->renderHttpException(object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:571)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:477)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse(object(Request), object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:394)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ModelNotFoundException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:185)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/app/Http/Middleware/GzipEncodeResponse.php:12)
  at App\Http\Middleware\GzipEncodeResponse->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php:41)
  at Illuminate\Session\Middleware\AuthenticateSession->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/spatie/laravel-referer/src/CaptureReferer.php:21)
  at Spatie\Referer\CaptureReferer->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(EncryptedStore), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:797)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Http/SetRequestIpMiddleware.php:45)
  at Sentry\Laravel\Http\SetRequestIpMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Http/SetRequestMiddleware.php:30)
  at Sentry\Laravel\Http\SetRequestMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Http/Middleware/ServeStaticAssets.php:21)
  at Laravel\Vapor\Http\Middleware\ServeStaticAssets->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/spatie/laravel-robots-middleware/src/RobotsMiddleware.php:14)
  at Spatie\RobotsMiddleware\RobotsMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/app/Http/Middleware/HttpsProtocolMiddleware.php:19)
  at App\Http\Middleware\HttpsProtocolMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustHosts.php:48)
  at Illuminate\Http\Middleware\TrustHosts->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Tracing/Middleware.php:52)
  at Sentry\Laravel\Tracing\Middleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/task/vendor/laravel/octane/src/ApplicationGateway.php:37)
  at Laravel\Octane\ApplicationGateway->handle(object(Request))
     (/var/task/vendor/laravel/octane/src/Worker.php:92)
  at Laravel\Octane\Worker->handle(object(Request), object(RequestContext))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Octane/Octane.php:194)
  at Laravel\Vapor\Runtime\Octane\Octane::Laravel\Vapor\Runtime\Octane\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/EnsureBinaryEncoding.php:19)
  at Laravel\Vapor\Runtime\Http\Middleware\EnsureBinaryEncoding->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/EnsureVanityUrlIsNotIndexed.php:16)
  at Laravel\Vapor\Runtime\Http\Middleware\EnsureVanityUrlIsNotIndexed->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/RedirectStaticAssets.php:30)
  at Laravel\Vapor\Runtime\Http\Middleware\RedirectStaticAssets->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/EnsureOnNakedDomain.php:46)
  at Laravel\Vapor\Runtime\Http\Middleware\EnsureOnNakedDomain->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Octane/Octane.php:193)
  at Laravel\Vapor\Runtime\Octane\Octane::sendRequest(object(Request), object(RequestContext))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Octane/Octane.php:162)
  at Laravel\Vapor\Runtime\Octane\Octane::handle(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Handlers/OctaneHandler.php:26)
  at Laravel\Vapor\Runtime\Handlers\OctaneHandler->handle(array('version' => '1.0', 'resource' => '$default', 'path' => '/affiliate-worden', 'httpMethod' => 'GET', 'headers' => array('Content-Length' => '0', 'Host' => 'emeals.work', 'User-Agent' => 'claudebot', 'X-Amzn-Trace-Id' => 'Root=1-6605c0c9-6414e3cb0f00544257071be6', 'X-Forwarded-For' => '18.209.209.28, 172.70.174.204', 'X-Forwarded-Port' => '443', 'X-Forwarded-Proto' => 'https', 'accept' => '*/*', 'accept-encoding' => 'gzip, br', 'cdn-loop' => 'cloudflare', 'cf-connecting-ip' => '18.209.209.28', 'cf-ipcountry' => 'US', 'cf-ray' => '86b9ec8a3aa382d5-IAD', 'cf-visitor' => '{"scheme":"https"}'), 'multiValueHeaders' => array('Content-Length' => array('0'), 'Host' => array('emeals.work'), 'User-Agent' => array('claudebot'), 'X-Amzn-Trace-Id' => array('Root=1-6605c0c9-6414e3cb0f00544257071be6'), 'X-Forwarded-For' => array('18.209.209.28, 172.70.174.204'), 'X-Forwarded-Port' => array('443'), 'X-Forwarded-Proto' => array('https'), 'accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'cdn-loop' => array('cloudflare'), 'cf-connecting-ip' => array('18.209.209.28'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b9ec8a3aa382d5-IAD'), 'cf-visitor' => array('{"scheme":"https"}')), 'queryStringParameters' => null, 'multiValueQueryStringParameters' => null, 'requestContext' => array('accountId' => '320299171002', 'apiId' => '58o7hik737', 'domainName' => 'emeals.work', 'domainPrefix' => 'emeals', 'extendedRequestId' => 'VWsPigYGliAEMrA=', 'httpMethod' => 'GET', 'identity' => array('accessKey' => null, 'accountId' => null, 'caller' => null, 'cognitoAmr' => null, 'cognitoAuthenticationProvider' => null, 'cognitoAuthenticationType' => null, 'cognitoIdentityId' => null, 'cognitoIdentityPoolId' => null, 'principalOrgId' => null, 'sourceIp' => '172.70.174.204', 'user' => null, 'userAgent' => 'claudebot', 'userArn' => null), 'path' => '/staging/affiliate-worden', 'protocol' => 'HTTP/1.1', 'requestId' => 'VWsPigYGliAEMrA=', 'requestTime' => '28/Mar/2024:19:11:05 +0000', 'requestTimeEpoch' => 1711653065556, 'resourceId' => '$default', 'resourcePath' => '$default', 'stage' => 'staging'), 'pathParameters' => null, 'stageVariables' => null, 'body' => null, 'isBase64Encoded' => false))
     (/var/task/octaneRuntime.php:101)
  at {closure}('a328dd74-0f2c-4e5a-b10d-d0793e0c3d1d', array('version' => '1.0', 'resource' => '$default', 'path' => '/affiliate-worden', 'httpMethod' => 'GET', 'headers' => array('Content-Length' => '0', 'Host' => 'emeals.work', 'User-Agent' => 'claudebot', 'X-Amzn-Trace-Id' => 'Root=1-6605c0c9-6414e3cb0f00544257071be6', 'X-Forwarded-For' => '18.209.209.28, 172.70.174.204', 'X-Forwarded-Port' => '443', 'X-Forwarded-Proto' => 'https', 'accept' => '*/*', 'accept-encoding' => 'gzip, br', 'cdn-loop' => 'cloudflare', 'cf-connecting-ip' => '18.209.209.28', 'cf-ipcountry' => 'US', 'cf-ray' => '86b9ec8a3aa382d5-IAD', 'cf-visitor' => '{"scheme":"https"}'), 'multiValueHeaders' => array('Content-Length' => array('0'), 'Host' => array('emeals.work'), 'User-Agent' => array('claudebot'), 'X-Amzn-Trace-Id' => array('Root=1-6605c0c9-6414e3cb0f00544257071be6'), 'X-Forwarded-For' => array('18.209.209.28, 172.70.174.204'), 'X-Forwarded-Port' => array('443'), 'X-Forwarded-Proto' => array('https'), 'accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'cdn-loop' => array('cloudflare'), 'cf-connecting-ip' => array('18.209.209.28'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b9ec8a3aa382d5-IAD'), 'cf-visitor' => array('{"scheme":"https"}')), 'queryStringParameters' => null, 'multiValueQueryStringParameters' => null, 'requestContext' => array('accountId' => '320299171002', 'apiId' => '58o7hik737', 'domainName' => 'emeals.work', 'domainPrefix' => 'emeals', 'extendedRequestId' => 'VWsPigYGliAEMrA=', 'httpMethod' => 'GET', 'identity' => array('accessKey' => null, 'accountId' => null, 'caller' => null, 'cognitoAmr' => null, 'cognitoAuthenticationProvider' => null, 'cognitoAuthenticationType' => null, 'cognitoIdentityId' => null, 'cognitoIdentityPoolId' => null, 'principalOrgId' => null, 'sourceIp' => '172.70.174.204', 'user' => null, 'userAgent' => 'claudebot', 'userArn' => null), 'path' => '/staging/affiliate-worden', 'protocol' => 'HTTP/1.1', 'requestId' => 'VWsPigYGliAEMrA=', 'requestTime' => '28/Mar/2024:19:11:05 +0000', 'requestTimeEpoch' => 1711653065556, 'resourceId' => '$default', 'resourcePath' => '$default', 'stage' => 'staging'), 'pathParameters' => null, 'stageVariables' => null, 'body' => null, 'isBase64Encoded' => false))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/LambdaRuntime.php:53)
  at Laravel\Vapor\Runtime\LambdaRuntime->nextInvocation(object(Closure))
     (/var/task/octaneRuntime.php:99)
  at require('/var/task/octaneRuntime.php')
     (/var/task/runtime.php:33)
  at require('/var/task/runtime.php')
     (/opt/bootstrap.php:6)                
[2/3] ViewException
Illuminate\View\ViewException:
Unable to locate file in Vite manifest: resources/css/web/web.css. (View: /var/task/resources/views/web/layouts/error.blade.php)

  at /var/task/vendor/laravel/framework/src/Illuminate/Foundation/Vite.php:737
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(Exception), 2)
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/tmp/storage/framework/views/a63cb094a2deaaa126d789d7a8741276.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/var/task/resources/views/web/layouts/error.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/inspector-apm/inspector-laravel/src/Views/ViewEngineDecorator.php:38)
  at Inspector\Laravel\Views\ViewEngineDecorator->get('/var/task/resources/views/web/layouts/error.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Tracing/ViewEngineDecorator.php:45)
  at Sentry\Laravel\Tracing\ViewEngineDecorator->get('/var/task/resources/views/web/layouts/error.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:195)
  at Illuminate\View\View->getContents()
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:178)
  at Illuminate\View\View->renderContents()
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:147)
  at Illuminate\View\View->render()
     (/tmp/storage/framework/views/133c32efde8a094c97253b999c4bbf99.php:12)
  at require('/tmp/storage/framework/views/133c32efde8a094c97253b999c4bbf99.php')
     (/var/task/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/task/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:125)
  at Illuminate\Filesystem\Filesystem->getRequire('/tmp/storage/framework/views/133c32efde8a094c97253b999c4bbf99.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/tmp/storage/framework/views/133c32efde8a094c97253b999c4bbf99.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/var/task/resources/views/errors/404.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/inspector-apm/inspector-laravel/src/Views/ViewEngineDecorator.php:38)
  at Inspector\Laravel\Views\ViewEngineDecorator->get('/var/task/resources/views/errors/404.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Tracing/ViewEngineDecorator.php:45)
  at Sentry\Laravel\Tracing\ViewEngineDecorator->get('/var/task/resources/views/errors/404.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:195)
  at Illuminate\View\View->getContents()
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:178)
  at Illuminate\View\View->renderContents()
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:147)
  at Illuminate\View\View->render()
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent(object(View))
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct(object(View), 404, array())
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/ResponseFactory.php:57)
  at Illuminate\Routing\ResponseFactory->make(object(View), 404, array())
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/ResponseFactory.php:87)
  at Illuminate\Routing\ResponseFactory->view('errors::404', array('errors' => object(ViewErrorBag), 'exception' => object(NotFoundHttpException)), 404, array())
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:643)
  at Illuminate\Foundation\Exceptions\Handler->renderHttpException(object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:571)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:477)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse(object(Request), object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:394)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ModelNotFoundException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:185)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/app/Http/Middleware/GzipEncodeResponse.php:12)
  at App\Http\Middleware\GzipEncodeResponse->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php:41)
  at Illuminate\Session\Middleware\AuthenticateSession->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/spatie/laravel-referer/src/CaptureReferer.php:21)
  at Spatie\Referer\CaptureReferer->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(EncryptedStore), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:797)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Http/SetRequestIpMiddleware.php:45)
  at Sentry\Laravel\Http\SetRequestIpMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Http/SetRequestMiddleware.php:30)
  at Sentry\Laravel\Http\SetRequestMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Http/Middleware/ServeStaticAssets.php:21)
  at Laravel\Vapor\Http\Middleware\ServeStaticAssets->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/spatie/laravel-robots-middleware/src/RobotsMiddleware.php:14)
  at Spatie\RobotsMiddleware\RobotsMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/app/Http/Middleware/HttpsProtocolMiddleware.php:19)
  at App\Http\Middleware\HttpsProtocolMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustHosts.php:48)
  at Illuminate\Http\Middleware\TrustHosts->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Tracing/Middleware.php:52)
  at Sentry\Laravel\Tracing\Middleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/task/vendor/laravel/octane/src/ApplicationGateway.php:37)
  at Laravel\Octane\ApplicationGateway->handle(object(Request))
     (/var/task/vendor/laravel/octane/src/Worker.php:92)
  at Laravel\Octane\Worker->handle(object(Request), object(RequestContext))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Octane/Octane.php:194)
  at Laravel\Vapor\Runtime\Octane\Octane::Laravel\Vapor\Runtime\Octane\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/EnsureBinaryEncoding.php:19)
  at Laravel\Vapor\Runtime\Http\Middleware\EnsureBinaryEncoding->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/EnsureVanityUrlIsNotIndexed.php:16)
  at Laravel\Vapor\Runtime\Http\Middleware\EnsureVanityUrlIsNotIndexed->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/RedirectStaticAssets.php:30)
  at Laravel\Vapor\Runtime\Http\Middleware\RedirectStaticAssets->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/EnsureOnNakedDomain.php:46)
  at Laravel\Vapor\Runtime\Http\Middleware\EnsureOnNakedDomain->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Octane/Octane.php:193)
  at Laravel\Vapor\Runtime\Octane\Octane::sendRequest(object(Request), object(RequestContext))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Octane/Octane.php:162)
  at Laravel\Vapor\Runtime\Octane\Octane::handle(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Handlers/OctaneHandler.php:26)
  at Laravel\Vapor\Runtime\Handlers\OctaneHandler->handle(array('version' => '1.0', 'resource' => '$default', 'path' => '/affiliate-worden', 'httpMethod' => 'GET', 'headers' => array('Content-Length' => '0', 'Host' => 'emeals.work', 'User-Agent' => 'claudebot', 'X-Amzn-Trace-Id' => 'Root=1-6605c0c9-6414e3cb0f00544257071be6', 'X-Forwarded-For' => '18.209.209.28, 172.70.174.204', 'X-Forwarded-Port' => '443', 'X-Forwarded-Proto' => 'https', 'accept' => '*/*', 'accept-encoding' => 'gzip, br', 'cdn-loop' => 'cloudflare', 'cf-connecting-ip' => '18.209.209.28', 'cf-ipcountry' => 'US', 'cf-ray' => '86b9ec8a3aa382d5-IAD', 'cf-visitor' => '{"scheme":"https"}'), 'multiValueHeaders' => array('Content-Length' => array('0'), 'Host' => array('emeals.work'), 'User-Agent' => array('claudebot'), 'X-Amzn-Trace-Id' => array('Root=1-6605c0c9-6414e3cb0f00544257071be6'), 'X-Forwarded-For' => array('18.209.209.28, 172.70.174.204'), 'X-Forwarded-Port' => array('443'), 'X-Forwarded-Proto' => array('https'), 'accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'cdn-loop' => array('cloudflare'), 'cf-connecting-ip' => array('18.209.209.28'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b9ec8a3aa382d5-IAD'), 'cf-visitor' => array('{"scheme":"https"}')), 'queryStringParameters' => null, 'multiValueQueryStringParameters' => null, 'requestContext' => array('accountId' => '320299171002', 'apiId' => '58o7hik737', 'domainName' => 'emeals.work', 'domainPrefix' => 'emeals', 'extendedRequestId' => 'VWsPigYGliAEMrA=', 'httpMethod' => 'GET', 'identity' => array('accessKey' => null, 'accountId' => null, 'caller' => null, 'cognitoAmr' => null, 'cognitoAuthenticationProvider' => null, 'cognitoAuthenticationType' => null, 'cognitoIdentityId' => null, 'cognitoIdentityPoolId' => null, 'principalOrgId' => null, 'sourceIp' => '172.70.174.204', 'user' => null, 'userAgent' => 'claudebot', 'userArn' => null), 'path' => '/staging/affiliate-worden', 'protocol' => 'HTTP/1.1', 'requestId' => 'VWsPigYGliAEMrA=', 'requestTime' => '28/Mar/2024:19:11:05 +0000', 'requestTimeEpoch' => 1711653065556, 'resourceId' => '$default', 'resourcePath' => '$default', 'stage' => 'staging'), 'pathParameters' => null, 'stageVariables' => null, 'body' => null, 'isBase64Encoded' => false))
     (/var/task/octaneRuntime.php:101)
  at {closure}('a328dd74-0f2c-4e5a-b10d-d0793e0c3d1d', array('version' => '1.0', 'resource' => '$default', 'path' => '/affiliate-worden', 'httpMethod' => 'GET', 'headers' => array('Content-Length' => '0', 'Host' => 'emeals.work', 'User-Agent' => 'claudebot', 'X-Amzn-Trace-Id' => 'Root=1-6605c0c9-6414e3cb0f00544257071be6', 'X-Forwarded-For' => '18.209.209.28, 172.70.174.204', 'X-Forwarded-Port' => '443', 'X-Forwarded-Proto' => 'https', 'accept' => '*/*', 'accept-encoding' => 'gzip, br', 'cdn-loop' => 'cloudflare', 'cf-connecting-ip' => '18.209.209.28', 'cf-ipcountry' => 'US', 'cf-ray' => '86b9ec8a3aa382d5-IAD', 'cf-visitor' => '{"scheme":"https"}'), 'multiValueHeaders' => array('Content-Length' => array('0'), 'Host' => array('emeals.work'), 'User-Agent' => array('claudebot'), 'X-Amzn-Trace-Id' => array('Root=1-6605c0c9-6414e3cb0f00544257071be6'), 'X-Forwarded-For' => array('18.209.209.28, 172.70.174.204'), 'X-Forwarded-Port' => array('443'), 'X-Forwarded-Proto' => array('https'), 'accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'cdn-loop' => array('cloudflare'), 'cf-connecting-ip' => array('18.209.209.28'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b9ec8a3aa382d5-IAD'), 'cf-visitor' => array('{"scheme":"https"}')), 'queryStringParameters' => null, 'multiValueQueryStringParameters' => null, 'requestContext' => array('accountId' => '320299171002', 'apiId' => '58o7hik737', 'domainName' => 'emeals.work', 'domainPrefix' => 'emeals', 'extendedRequestId' => 'VWsPigYGliAEMrA=', 'httpMethod' => 'GET', 'identity' => array('accessKey' => null, 'accountId' => null, 'caller' => null, 'cognitoAmr' => null, 'cognitoAuthenticationProvider' => null, 'cognitoAuthenticationType' => null, 'cognitoIdentityId' => null, 'cognitoIdentityPoolId' => null, 'principalOrgId' => null, 'sourceIp' => '172.70.174.204', 'user' => null, 'userAgent' => 'claudebot', 'userArn' => null), 'path' => '/staging/affiliate-worden', 'protocol' => 'HTTP/1.1', 'requestId' => 'VWsPigYGliAEMrA=', 'requestTime' => '28/Mar/2024:19:11:05 +0000', 'requestTimeEpoch' => 1711653065556, 'resourceId' => '$default', 'resourcePath' => '$default', 'stage' => 'staging'), 'pathParameters' => null, 'stageVariables' => null, 'body' => null, 'isBase64Encoded' => false))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/LambdaRuntime.php:53)
  at Laravel\Vapor\Runtime\LambdaRuntime->nextInvocation(object(Closure))
     (/var/task/octaneRuntime.php:99)
  at require('/var/task/octaneRuntime.php')
     (/var/task/runtime.php:33)
  at require('/var/task/runtime.php')
     (/opt/bootstrap.php:6)                
[1/3] Exception
Exception:
Unable to locate file in Vite manifest: resources/css/web/web.css.

  at /var/task/vendor/laravel/framework/src/Illuminate/Foundation/Vite.php:737
  at Illuminate\Foundation\Vite->chunk(array('InputMarkdown.css' => array('file' => 'static/css/a7524df9.css', 'src' => 'InputMarkdown.css'), 'TableRoot.css' => array('file' => 'static/css/e3b0c442.css', 'src' => 'TableRoot.css'), '_00bb14ca.js' => array('file' => 'static/js/00bb14ca.js', 'imports' => array('_7327658c.js', '_370b921a.js')), '_06c5a69d.js' => array('file' => 'static/js/06c5a69d.js', 'imports' => array('_370b921a.js')), '_08207d7d.js' => array('file' => 'static/js/08207d7d.js', 'imports' => array('_370b921a.js')), '_0b96ffcf.js' => array('file' => 'static/js/0b96ffcf.js', 'imports' => array('_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_c7c99aae.js', '_e2e9dbc8.js')), '_13026abc.js' => array('file' => 'static/js/13026abc.js', 'imports' => array('_370b921a.js')), '_1335f829.js' => array('file' => 'static/js/1335f829.js', 'imports' => array('_a07ed2bc.js', '_370b921a.js')), '_16c9a34c.js' => array('file' => 'static/js/16c9a34c.js', 'imports' => array('_5e30ba1d.js', '_370b921a.js')), '_16d96afa.js' => array('file' => 'static/js/16d96afa.js', 'imports' => array('_59630b24.js', '_370b921a.js')), '_175bf124.js' => array('dynamicImports' => array('node_modules/leaflet/dist/images/marker-icon-2x.png', 'node_modules/leaflet/dist/images/marker-icon.png', 'node_modules/leaflet/dist/images/marker-shadow.png', 'node_modules/leaflet/dist/leaflet-src.esm.js', 'node_modules/leaflet/dist/leaflet-src.esm.js', 'node_modules/leaflet/dist/leaflet-src.esm.js', '_ef6e1107.js', 'node_modules/leaflet/dist/leaflet-src.esm.js', 'node_modules/leaflet/dist/leaflet-src.esm.js', 'node_modules/leaflet/dist/leaflet-src.esm.js', 'node_modules/leaflet/dist/leaflet-src.esm.js'), 'file' => 'static/js/175bf124.js', 'imports' => array('_370b921a.js')), '_1ebc8a12.js' => array('css' => array('static/css/a7524df9.css'), 'file' => 'static/js/1ebc8a12.js', 'imports' => array('_370b921a.js')), '_210af661.js' => array('assets' => array('static/svg/0d201cb6.svg', 'static/svg/ea1bf758.svg', 'static/svg/d64cb7bf.svg', 'static/svg/a6bc3e48.svg'), 'file' => 'static/js/210af661.js'), '_2136f1fd.js' => array('file' => 'static/js/2136f1fd.js', 'imports' => array('_370b921a.js')), '_26634ccd.js' => array('file' => 'static/js/26634ccd.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_287a582e.js' => array('file' => 'static/js/287a582e.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_2db2ef59.js' => array('file' => 'static/js/2db2ef59.js', 'imports' => array('_370b921a.js', '_1335f829.js', '_a07ed2bc.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue')), '_310db65c.js' => array('file' => 'static/js/310db65c.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_353982b4.js' => array('file' => 'static/js/353982b4.js', 'imports' => array('_370b921a.js')), '_370b921a.js' => array('dynamicImports' => array('_4a3d5440.js'), 'file' => 'static/js/370b921a.js'), '_3845a5e6.js' => array('file' => 'static/js/3845a5e6.js', 'imports' => array('_370b921a.js')), '_3e249caf.js' => array('file' => 'static/js/3e249caf.js'), '_3f07ad90.js' => array('file' => 'static/js/3f07ad90.js', 'imports' => array('_370b921a.js', '_a0714199.js')), '_40838281.js' => array('file' => 'static/js/40838281.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_43973dbc.js' => array('file' => 'static/js/43973dbc.js', 'imports' => array('_370b921a.js')), '_45c7030d.js' => array('file' => 'static/js/45c7030d.js', 'imports' => array('_370b921a.js')), '_46dd6223.js' => array('css' => array('static/css/f9a9f07c.css'), 'file' => 'static/js/46dd6223.js', 'imports' => array('_370b921a.js')), '_4a3d5440.js' => array('file' => 'static/js/4a3d5440.js', 'imports' => array('_370b921a.js'), 'isDynamicEntry' => true), '_510c47db.js' => array('file' => 'static/js/510c47db.js', 'imports' => array('_7ce54f06.js', '_370b921a.js')), '_512f03aa.js' => array('file' => 'static/js/512f03aa.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_551c3b66.js' => array('file' => 'static/js/551c3b66.js', 'imports' => array('_c27b6911.js', '_0b96ffcf.js', '_370b921a.js')), '_59630b24.js' => array('file' => 'static/js/59630b24.js', 'imports' => array('_370b921a.js', '_eb1c8fef.js')), '_5cbb209f.js' => array('file' => 'static/js/5cbb209f.js', 'imports' => array('_8603340c.js', '_745abfaf.js', '_e2e9dbc8.js')), '_5e30ba1d.js' => array('file' => 'static/js/5e30ba1d.js', 'imports' => array('_370b921a.js', '_eb1c8fef.js')), '_5f4b8e41.js' => array('file' => 'static/js/5f4b8e41.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_62f67b22.js' => array('file' => 'static/js/62f67b22.js', 'imports' => array('_370b921a.js')), '_64f9a376.js' => array('file' => 'static/js/64f9a376.js', 'imports' => array('_13026abc.js', '_370b921a.js')), '_669aafff.js' => array('css' => array('static/css/f9a9f07c.css'), 'file' => 'static/js/669aafff.js', 'imports' => array('_370b921a.js')), '_67cb1df3.js' => array('file' => 'static/js/67cb1df3.js', 'imports' => array('_ade20a39.js', '_370b921a.js')), '_6c37bc82.js' => array('file' => 'static/js/6c37bc82.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_6f2c2676.js' => array('file' => 'static/js/6f2c2676.js', 'imports' => array('_370b921a.js')), '_7327658c.js' => array('file' => 'static/js/7327658c.js', 'imports' => array('_370b921a.js', '_45c7030d.js')), '_745abfaf.js' => array('file' => 'static/js/745abfaf.js', 'imports' => array('_8603340c.js')), '_7522c097.js' => array('file' => 'static/js/7522c097.js', 'imports' => array('_370b921a.js')), '_7855c332.js' => array('file' => 'static/js/7855c332.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_78996a45.js' => array('file' => 'static/js/78996a45.js', 'imports' => array('_370b921a.js')), '_7af098c5.js' => array('css' => array('static/css/e3b0c442.css'), 'file' => 'static/js/7af098c5.js', 'imports' => array('_370b921a.js', '_c27b6911.js')), '_7ce54f06.js' => array('file' => 'static/js/7ce54f06.js', 'imports' => array('_370b921a.js')), '_7d1fe70e.js' => array('file' => 'static/js/7d1fe70e.js', 'imports' => array('_370b921a.js')), '_854c9717.js' => array('file' => 'static/js/854c9717.js', 'imports' => array('_370b921a.js')), '_8603340c.js' => array('file' => 'static/js/8603340c.js'), '_8a16e719.js' => array('file' => 'static/js/8a16e719.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_6c37bc82.js')), '_8d5b8c8c.js' => array('file' => 'static/js/8d5b8c8c.js', 'imports' => array('_370b921a.js')), '_8f196142.js' => array('file' => 'static/js/8f196142.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_917be386.js' => array('file' => 'static/js/917be386.js', 'imports' => array('_78996a45.js', '_370b921a.js', '_c27b6911.js')), '_947a95da.js' => array('file' => 'static/js/947a95da.js', 'imports' => array('_370b921a.js')), '_94b882d7.js' => array('file' => 'static/js/94b882d7.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_96501d6c.js' => array('file' => 'static/js/96501d6c.js', 'imports' => array('_a0714199.js', '_370b921a.js')), '_96873278.js' => array('file' => 'static/js/96873278.js', 'imports' => array('_7ce54f06.js', '_370b921a.js', '_7327658c.js', '_d1e40df9.js')), '_9740da9c.js' => array('file' => 'static/js/9740da9c.js', 'imports' => array('_370b921a.js')), '_9e3341b0.js' => array('file' => 'static/js/9e3341b0.js', 'imports' => array('_3e249caf.js')), '_9ef54f8b.js' => array('file' => 'static/js/9ef54f8b.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_a0714199.js' => array('file' => 'static/js/a0714199.js', 'imports' => array('_45c7030d.js', '_370b921a.js')), '_a07ed2bc.js' => array('file' => 'static/js/a07ed2bc.js', 'imports' => array('_370b921a.js', '_c27b6911.js')), '_a0e2ed60.js' => array('file' => 'static/js/a0e2ed60.js', 'imports' => array('_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js', '_370b921a.js')), '_a0e8e535.js' => array('file' => 'static/js/a0e8e535.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_a0fb899e.js' => array('file' => 'static/js/a0fb899e.js', 'imports' => array('_370b921a.js')), '_a3a50fa5.js' => array('file' => 'static/js/a3a50fa5.js', 'imports' => array('_3e249caf.js')), '_a54181ad.js' => array('file' => 'static/js/a54181ad.js', 'imports' => array('_370b921a.js')), '_a5bd6a5c.js' => array('file' => 'static/js/a5bd6a5c.js', 'imports' => array('_175bf124.js', '_370b921a.js', '_ef6e1107.js')), '_a91a466f.js' => array('file' => 'static/js/a91a466f.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_ade20a39.js' => array('css' => array('static/css/a1ae07b3.css'), 'dynamicImports' => array('resources/lang/php_de.json', 'resources/lang/php_en.json', 'resources/lang/php_nl.json', 'resources/lang/php_vendor.json'), 'file' => 'static/js/ade20a39.js', 'imports' => array('_370b921a.js')), '_af3926ae.js' => array('file' => 'static/js/af3926ae.js', 'imports' => array('_7d1fe70e.js', '_917be386.js', '_370b921a.js', '_7af098c5.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js')), '_auth-bg.css' => array('file' => 'static/css/f9a9f07c.css', 'src' => '_auth-bg.css'), '_b43a6e2b.js' => array('file' => 'static/js/b43a6e2b.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_b53a5748.js' => array('file' => 'static/js/b53a5748.js', 'imports' => array('_370b921a.js')), '_b59ce955.js' => array('file' => 'static/js/b59ce955.js', 'imports' => array('_d1e40df9.js', '_370b921a.js')), '_b8693801.js' => array('file' => 'static/js/b8693801.js', 'imports' => array('_45c7030d.js', '_370b921a.js')), '_b8a8b4d5.js' => array('file' => 'static/js/b8a8b4d5.js', 'imports' => array('_7ce54f06.js', '_370b921a.js')), '_b9da320d.js' => array('file' => 'static/js/b9da320d.js', 'imports' => array('_59630b24.js', '_370b921a.js')), '_bc417422.js' => array('file' => 'static/js/bc417422.js', 'imports' => array('_370b921a.js')), '_c2287878.js' => array('file' => 'static/js/c2287878.js', 'imports' => array('_370b921a.js')), '_c27b6911.js' => array('file' => 'static/js/c27b6911.js'), '_c70216c7.js' => array('file' => 'static/js/c70216c7.js', 'imports' => array('_370b921a.js')), '_c7c99aae.js' => array('file' => 'static/js/c7c99aae.js', 'imports' => array('_745abfaf.js', '_8603340c.js')), '_c7d1195b.js' => array('file' => 'static/js/c7d1195b.js', 'imports' => array('_370b921a.js', '_d2e22a47.js', '_b9da320d.js', '_b8693801.js', '_510c47db.js')), '_cc81708d.js' => array('file' => 'static/js/cc81708d.js', 'imports' => array('_370b921a.js')), '_ccc7643e.js' => array('file' => 'static/js/ccc7643e.js', 'imports' => array('_45c7030d.js', '_370b921a.js')), '_cd65597f.js' => array('file' => 'static/js/cd65597f.js', 'imports' => array('_370b921a.js')), '_ceafcdf0.js' => array('file' => 'static/js/ceafcdf0.js', 'imports' => array('_370b921a.js')), '_d1e40df9.js' => array('file' => 'static/js/d1e40df9.js', 'imports' => array('_370b921a.js', '_59630b24.js')), '_d2e22a47.js' => array('file' => 'static/js/d2e22a47.js', 'imports' => array('_370b921a.js')), '_d8e65df9.js' => array('file' => 'static/js/d8e65df9.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_da92063f.js' => array('file' => 'static/js/da92063f.js', 'imports' => array('_370b921a.js', '_c27b6911.js')), '_dea06df1.js' => array('file' => 'static/js/dea06df1.js', 'imports' => array('_370b921a.js')), '_dfd2c82f.js' => array('file' => 'static/js/dfd2c82f.js', 'imports' => array('_370b921a.js')), '_e1870c3b.js' => array('file' => 'static/js/e1870c3b.js', 'imports' => array('_c27b6911.js', '_370b921a.js')), '_e1c14a4b.js' => array('assets' => array('static/svg/ae979c5e.svg'), 'file' => 'static/js/e1c14a4b.js'), '_e2e9dbc8.js' => array('file' => 'static/js/e2e9dbc8.js', 'imports' => array('_8603340c.js')), '_e4111aed.js' => array('file' => 'static/js/e4111aed.js', 'imports' => array('_9e3341b0.js', '_c27b6911.js', '_370b921a.js')), '_e48cd260.js' => array('file' => 'static/js/e48cd260.js', 'imports' => array('_370b921a.js')), '_e9093abc.js' => array('file' => 'static/js/e9093abc.js', 'imports' => array('_5e30ba1d.js', '_370b921a.js')), '_e962ceee.js' => array('file' => 'static/js/e962ceee.js', 'imports' => array('_370b921a.js')), '_eb1c8fef.js' => array('file' => 'static/js/eb1c8fef.js', 'imports' => array('_370b921a.js')), '_ef6e1107.js' => array('file' => 'static/js/ef6e1107.js', 'imports' => array('_370b921a.js'), 'isDynamicEntry' => true), '_f1a9e5fc.js' => array('file' => 'static/js/f1a9e5fc.js', 'imports' => array('_370b921a.js')), '_f614fd6e.js' => array('file' => 'static/js/f614fd6e.js', 'imports' => array('_370b921a.js')), '_fa6dbfd1.js' => array('file' => 'static/js/fa6dbfd1.js', 'imports' => array('_370b921a.js')), 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf' => array('file' => 'static/ttf/20c4a58b.ttf', 'src' => 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf'), 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2' => array('file' => 'static/woff2/74833209.woff2', 'src' => 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2'), 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf' => array('file' => 'static/ttf/528d022d.ttf', 'src' => 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf'), 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2' => array('file' => 'static/woff2/8e7e5ea1.woff2', 'src' => 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2'), 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf' => array('file' => 'static/ttf/67a65763.ttf', 'src' => 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf'), 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2' => array('file' => 'static/woff2/7152a693.woff2', 'src' => 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'), 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.ttf' => array('file' => 'static/ttf/0515a423.ttf', 'src' => 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.ttf'), 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.woff2' => array('file' => 'static/woff2/694a17c3.woff2', 'src' => 'node_modules/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.woff2'), 'node_modules/leaflet/dist/images/layers-2x.png' => array('file' => 'static/png/066daca8.png', 'src' => 'node_modules/leaflet/dist/images/layers-2x.png'), 'node_modules/leaflet/dist/images/layers.png' => array('file' => 'static/png/1dbbe9d0.png', 'src' => 'node_modules/leaflet/dist/images/layers.png'), 'node_modules/leaflet/dist/images/marker-icon-2x.png' => array('assets' => array('static/png/00179c4c.png'), 'file' => 'static/js/3c9366ab.js', 'isDynamicEntry' => true, 'src' => 'node_modules/leaflet/dist/images/marker-icon-2x.png'), 'node_modules/leaflet/dist/images/marker-icon.png' => array('assets' => array('static/png/574c3a5c.png'), 'file' => 'static/js/d7572a17.js', 'isDynamicEntry' => true, 'src' => 'node_modules/leaflet/dist/images/marker-icon.png'), 'node_modules/leaflet/dist/images/marker-shadow.png' => array('assets' => array('static/png/264f5c64.png'), 'file' => 'static/js/77d0cd63.js', 'isDynamicEntry' => true, 'src' => 'node_modules/leaflet/dist/images/marker-shadow.png'), 'node_modules/leaflet/dist/leaflet-src.esm.js' => array('file' => 'static/js/457c3857.js', 'isDynamicEntry' => true, 'src' => 'node_modules/leaflet/dist/leaflet-src.esm.js'), 'resources/css/lambda/receipt.css' => array('file' => 'static/css/5d0877b5.css', 'isEntry' => true, 'src' => 'resources/css/lambda/receipt.css'), 'resources/img/shared/appstore.svg' => array('file' => 'static/svg/b70b320c.svg', 'src' => 'resources/img/shared/appstore.svg'), 'resources/img/shared/favicon/favicon-blue.svg' => array('file' => 'static/svg/a439e745.svg', 'src' => 'resources/img/shared/favicon/favicon-blue.svg'), 'resources/img/shared/favicon/favicon-green.svg' => array('file' => 'static/svg/50b5d746.svg', 'src' => 'resources/img/shared/favicon/favicon-green.svg'), 'resources/img/shared/favicon/favicon-orange.svg' => array('file' => 'static/svg/84ff85b7.svg', 'src' => 'resources/img/shared/favicon/favicon-orange.svg'), 'resources/img/shared/logo-sub-slogan-accent.svg' => array('file' => 'static/svg/8293f9e2.svg', 'src' => 'resources/img/shared/logo-sub-slogan-accent.svg'), 'resources/img/shared/logo-sub-slogan.svg' => array('file' => 'static/svg/ec3e7620.svg', 'src' => 'resources/img/shared/logo-sub-slogan.svg'), 'resources/img/shared/logo-sub.svg' => array('file' => 'static/svg/4719dd42.svg', 'src' => 'resources/img/shared/logo-sub.svg'), 'resources/img/shared/logo.svg' => array('file' => 'static/svg/ae979c5e.svg', 'src' => 'resources/img/shared/logo.svg'), 'resources/img/shared/logo/logo-black.svg' => array('file' => 'static/svg/fdf4993c.svg', 'src' => 'resources/img/shared/logo/logo-black.svg'), 'resources/img/shared/logo/logo-blue.svg' => array('file' => 'static/svg/15dca83c.svg', 'src' => 'resources/img/shared/logo/logo-blue.svg'), 'resources/img/shared/logo/logo-green.svg' => array('file' => 'static/svg/d6d7d596.svg', 'src' => 'resources/img/shared/logo/logo-green.svg'), 'resources/img/shared/logo/logo-orange.svg' => array('file' => 'static/svg/a7fda7bb.svg', 'src' => 'resources/img/shared/logo/logo-orange.svg'), 'resources/img/shared/logo/logo-white.svg' => array('file' => 'static/svg/0b7bfda1.svg', 'src' => 'resources/img/shared/logo/logo-white.svg'), 'resources/img/shared/pattern.png' => array('file' => 'static/png/4d9d855e.png', 'src' => 'resources/img/shared/pattern.png'), 'resources/img/shared/pattern.webp' => array('file' => 'static/webp/b37388e5.webp', 'src' => 'resources/img/shared/pattern.webp'), 'resources/img/shared/playstore.svg' => array('file' => 'static/svg/f7283c8e.svg', 'src' => 'resources/img/shared/playstore.svg'), 'resources/img/web/illustrations/arrow.svg' => array('file' => 'static/svg/0d201cb6.svg', 'src' => 'resources/img/web/illustrations/arrow.svg'), 'resources/img/web/illustrations/choose-address.svg' => array('file' => 'static/svg/ea1bf758.svg', 'src' => 'resources/img/web/illustrations/choose-address.svg'), 'resources/img/web/illustrations/choose-dish.svg' => array('file' => 'static/svg/d64cb7bf.svg', 'src' => 'resources/img/web/illustrations/choose-dish.svg'), 'resources/img/web/illustrations/delivery.svg' => array('file' => 'static/svg/a6bc3e48.svg', 'src' => 'resources/img/web/illustrations/delivery.svg'), 'resources/img/web/illustrations/phone.svg' => array('file' => 'static/svg/b25eb40e.svg', 'src' => 'resources/img/web/illustrations/phone.svg'), 'resources/img/web/illustrations/restaurant.svg' => array('file' => 'static/svg/5f4428c9.svg', 'src' => 'resources/img/web/illustrations/restaurant.svg'), 'resources/img/web/signup/bike.jpg' => array('file' => 'static/jpg/46a1d84b.jpg', 'src' => 'resources/img/web/signup/bike.jpg'), 'resources/img/web/signup/terminal.jpg' => array('file' => 'static/jpg/194ef335.jpg', 'src' => 'resources/img/web/signup/terminal.jpg'), 'resources/js/admin/admin.css' => array('file' => 'static/css/83b0fa29.css', 'src' => 'resources/js/admin/admin.css'), 'resources/js/admin/admin.ts' => array('assets' => array('static/svg/0b7bfda1.svg', 'static/mp3/2dff1d0b.mp3', 'static/woff2/8e7e5ea1.woff2', 'static/ttf/528d022d.ttf', 'static/woff2/7152a693.woff2', 'static/ttf/67a65763.ttf', 'static/woff2/74833209.woff2', 'static/ttf/20c4a58b.ttf', 'static/png/1dbbe9d0.png', 'static/png/066daca8.png', 'static/png/574c3a5c.png', 'static/png/4d9d855e.png'), 'css' => array('static/css/83b0fa29.css'), 'dynamicImports' => array('resources/js/admin/modals/Modal.vue', 'resources/js/admin/modals/SlideOver.vue', 'resources/js/admin/modals/auth/ForgetPassword.vue', 'resources/js/admin/modals/auth/Profile.vue', 'resources/js/admin/modals/auth/ResetPassword.vue', 'resources/js/admin/modals/common/ConfirmDelete.vue', 'resources/js/admin/modals/coupons/Form.vue', 'resources/js/admin/modals/discounts/Form.vue', 'resources/js/admin/modals/dishes/Dish.vue', 'resources/js/admin/modals/merchants/Create.vue', 'resources/js/admin/modals/merchants/Select.vue', 'resources/js/admin/modals/merchants/bank-accounts/Form.vue', 'resources/js/admin/modals/orders/Accept.vue', 'resources/js/admin/modals/orders/Decline.vue', 'resources/js/admin/modals/orders/Receipt.vue', 'resources/js/admin/modals/regions/Create.vue', 'resources/js/admin/modals/restaurants/Checks.vue', 'resources/js/admin/modals/restaurants/Create.vue', 'resources/js/admin/modals/restaurants/ThirdPartySelect.vue', 'resources/js/admin/modals/restaurants/users/Form.vue', 'resources/js/admin/modals/terminals/Form.vue', 'resources/js/admin/modals/topping-groups/Form.vue', 'resources/js/admin/modals/topping-groups/Select.vue', 'resources/js/admin/modals/toppings/Form.vue', 'resources/js/admin/modals/users/Form.vue', 'resources/js/admin/pages/admins/Form.vue', 'resources/js/admin/pages/admins/Index.vue', 'resources/js/admin/pages/allergens/Form.vue', 'resources/js/admin/pages/allergens/Index.vue', 'resources/js/admin/pages/auth/ForgotPassword.vue', 'resources/js/admin/pages/auth/Locked.vue', 'resources/js/admin/pages/auth/Login.vue', 'resources/js/admin/pages/auth/Profile.vue', 'resources/js/admin/pages/auth/ResetPassword.vue', 'resources/js/admin/pages/auth/components/navigation/SubNavigation.vue', 'resources/js/admin/pages/auth/components/navigation/TopNavigation.vue', 'resources/js/admin/pages/cities/Form.vue', 'resources/js/admin/pages/cities/Index.vue', 'resources/js/admin/pages/cities/Show.vue', 'resources/js/admin/pages/consumers/Affiliates.vue', 'resources/js/admin/pages/consumers/Coupons.vue', 'resources/js/admin/pages/consumers/Form.vue', 'resources/js/admin/pages/consumers/SubNavigation.vue', 'resources/js/admin/pages/consumers/addresses/Form.vue', 'resources/js/admin/pages/consumers/addresses/Index.vue', 'resources/js/admin/pages/consumers/components/navigation/TopNavigationConsumer.vue', 'resources/js/admin/pages/consumers/components/navigation/TopNavigationIndex.vue', 'resources/js/admin/pages/coupons/Form.vue', 'resources/js/admin/pages/coupons/Index.vue', 'resources/js/admin/pages/coupons/SubNavigation.vue', 'resources/js/admin/pages/dashboard/Index.vue', 'resources/js/admin/pages/dashboard/ServiceStates.vue', 'resources/js/admin/pages/faq/Form.vue', 'resources/js/admin/pages/faq/Index.vue', 'resources/js/admin/pages/kitchens/Form.vue', 'resources/js/admin/pages/kitchens/Index.vue', 'resources/js/admin/pages/merchants/Create.vue', 'resources/js/admin/pages/merchants/Index.vue', 'resources/js/admin/pages/merchants/Show.vue', 'resources/js/admin/pages/merchants/SubNavigation.vue', 'resources/js/admin/pages/merchants/addresses/Index.vue', 'resources/js/admin/pages/merchants/bank-accounts/Form.vue', 'resources/js/admin/pages/merchants/bank-accounts/Index.vue', 'resources/js/admin/pages/merchants/compliance/Index.vue', 'resources/js/admin/pages/merchants/components/navigation/SubNavigationIndex.vue', 'resources/js/admin/pages/merchants/components/navigation/TopNavigationIndex.vue', 'resources/js/admin/pages/merchants/components/navigation/TopNavigationMerchant.vue', 'resources/js/admin/pages/merchants/contacts/Form.vue', 'resources/js/admin/pages/merchants/contacts/Index.vue', 'resources/js/admin/pages/merchants/settlements/Index.vue', 'resources/js/admin/pages/merchants/settlements/Show.vue', 'resources/js/admin/pages/merchants/ubos/Form.vue', 'resources/js/admin/pages/merchants/ubos/Index.vue', 'resources/js/admin/pages/news/Form.vue', 'resources/js/admin/pages/news/Index.vue', 'resources/js/admin/pages/orders/Index.vue', 'resources/js/admin/pages/orders/Show.vue', 'resources/js/admin/pages/orders/SubNavigation.vue', 'resources/js/admin/pages/orders/components/navigation/TopNavigation.vue', 'resources/js/admin/pages/orders/components/navigation/TopNavigationOrder.vue', 'resources/js/admin/pages/orders/order/Receipt.vue', 'resources/js/admin/pages/orders/order/Rows.vue', 'resources/js/admin/pages/orders/order/SubNavigation.vue', 'resources/js/admin/pages/orders/order/Transactions.vue', 'resources/js/admin/pages/pages/Form.vue', 'resources/js/admin/pages/pages/Index.vue', 'resources/js/admin/pages/payment-methods/Form.vue', 'resources/js/admin/pages/payment-methods/Index.vue', 'resources/js/admin/pages/payment-methods/Show.vue', 'resources/js/admin/pages/regions/Form.vue', 'resources/js/admin/pages/regions/Index.vue', 'resources/js/admin/pages/reports/SubNavigation.vue', 'resources/js/admin/pages/reports/referrals/Index.vue', 'resources/js/admin/pages/reports/settlements/Index.vue', 'resources/js/admin/pages/reports/settlements/Show.vue', 'resources/js/admin/pages/reports/transactions/Index.vue', 'resources/js/admin/pages/reports/transactions/Show.vue', 'resources/js/admin/pages/restaurant-groups/Form.vue', 'resources/js/admin/pages/restaurant-groups/Index.vue', 'resources/js/admin/pages/restaurants/Index.vue', 'resources/js/admin/pages/restaurants/Show.vue', 'resources/js/admin/pages/restaurants/categories/Form.vue', 'resources/js/admin/pages/restaurants/categories/Index.vue', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationDishes.vue', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationIndex.vue', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationOrders.vue', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue', 'resources/js/admin/pages/restaurants/components/navigation/TopNavigationEdit.vue', 'resources/js/admin/pages/restaurants/components/navigation/TopNavigationIndex.vue', 'resources/js/admin/pages/restaurants/coupons/Index.vue', 'resources/js/admin/pages/restaurants/discounts/Index.vue', 'resources/js/admin/pages/restaurants/dishes/Form.vue', 'resources/js/admin/pages/restaurants/dishes/Index.vue', 'resources/js/admin/pages/restaurants/dishes/QuickForm.vue', 'resources/js/admin/pages/restaurants/dishes/Show.vue', 'resources/js/admin/pages/restaurants/edit/FormAvailabilities.vue', 'resources/js/admin/pages/restaurants/edit/FormCommon.vue', 'resources/js/admin/pages/restaurants/edit/FormDishMenu.vue', 'resources/js/admin/pages/restaurants/edit/FormImport.vue', 'resources/js/admin/pages/restaurants/edit/FormOrders.vue', 'resources/js/admin/pages/restaurants/edit/FormPrinter.vue', 'resources/js/admin/pages/restaurants/edit/FormReminderCalls.vue', 'resources/js/admin/pages/restaurants/edit/FormSubscriptions.vue', 'resources/js/admin/pages/restaurants/edit/Tables.vue', 'resources/js/admin/pages/restaurants/edit/components/SubNavigation.vue', 'resources/js/admin/pages/restaurants/edit/components/TopNavigation.vue', 'resources/js/admin/pages/restaurants/import/Index.vue', 'resources/js/admin/pages/restaurants/logs/Index.vue', 'resources/js/admin/pages/restaurants/media/Form.vue', 'resources/js/admin/pages/restaurants/notifications/Index.vue', 'resources/js/admin/pages/restaurants/orders/Index.vue', 'resources/js/admin/pages/restaurants/orders/Show.vue', 'resources/js/admin/pages/restaurants/payouts/Form.vue', 'resources/js/admin/pages/restaurants/regions/Form.vue', 'resources/js/admin/pages/restaurants/regions/Index.vue', 'resources/js/admin/pages/restaurants/seo/Form.vue', 'resources/js/admin/pages/restaurants/topping-groups/Form.vue', 'resources/js/admin/pages/restaurants/topping-groups/Index.vue', 'resources/js/admin/pages/restaurants/users/Index.vue', 'resources/js/admin/pages/restaurants/vendibles/Navigation.vue', 'resources/js/admin/pages/restaurants/vendibles/purchases/Form.vue', 'resources/js/admin/pages/restaurants/vendibles/purchases/Index.vue', 'resources/js/admin/pages/restaurants/vendibles/purchases/Show.vue', 'resources/js/admin/pages/restaurants/vendibles/subscriptions/Form.vue', 'resources/js/admin/pages/restaurants/vendibles/subscriptions/Index.vue', 'resources/js/admin/pages/reviews/Index.vue', 'resources/js/admin/pages/settings/Common.vue', 'resources/js/admin/pages/settings/SubNavigation.vue', 'resources/js/admin/pages/settings/components/SubNavigationCommon.vue', 'resources/js/admin/pages/settings/components/SubNavigationContent.vue', 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', 'resources/js/admin/pages/settings/media/Index.vue', 'resources/js/admin/pages/settings/redirects/Form.vue', 'resources/js/admin/pages/settings/redirects/Index.vue', 'resources/js/admin/pages/settings/redirects/Show.vue', 'resources/js/admin/pages/terminals/Form.vue', 'resources/js/admin/pages/terminals/Index.vue', 'resources/js/admin/pages/terminals/Show.vue', 'resources/js/admin/pages/terminals/components/navigation/TopNavigationCommon.vue', 'resources/js/admin/pages/terminals/components/navigation/TopNavigationIndex.vue', 'resources/js/admin/pages/tickets/Index.vue', 'resources/js/admin/pages/users/Index.vue', 'resources/js/admin/pages/users/Show.vue', 'resources/js/admin/pages/users/orders/Index.vue', 'resources/js/admin/pages/vendibles/Form.vue', 'resources/js/admin/pages/vendibles/Index.vue', 'resources/js/admin/pages/vendibles/SubNavigation.vue'), 'file' => 'static/js/76d18770.js', 'imports' => array('_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_c27b6911.js'), 'isEntry' => true, 'src' => 'resources/js/admin/admin.ts'), 'resources/js/admin/modals/Modal.vue' => array('file' => 'static/js/f2c7becf.js', 'imports' => array('_f614fd6e.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/Modal.vue'), 'resources/js/admin/modals/SlideOver.vue' => array('file' => 'static/js/38875abb.js', 'imports' => array('_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/SlideOver.vue'), 'resources/js/admin/modals/auth/ForgetPassword.vue' => array('file' => 'static/js/cd215866.js', 'imports' => array('_370b921a.js', '_d8e65df9.js', '_a0714199.js', '_f614fd6e.js', '_c27b6911.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/auth/ForgetPassword.vue'), 'resources/js/admin/modals/auth/Profile.vue' => array('file' => 'static/js/e0a0fc87.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_a0714199.js', '_f614fd6e.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/auth/Profile.vue'), 'resources/js/admin/modals/auth/ResetPassword.vue' => array('file' => 'static/js/ed8ae6be.js', 'imports' => array('_370b921a.js', '_d8e65df9.js', '_a0714199.js', '_f614fd6e.js', '_c27b6911.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/auth/ResetPassword.vue'), 'resources/js/admin/modals/common/ConfirmDelete.vue' => array('file' => 'static/js/e90c6e33.js', 'imports' => array('_370b921a.js', '_f614fd6e.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/common/ConfirmDelete.vue'), 'resources/js/admin/modals/coupons/Form.vue' => array('file' => 'static/js/6c4767d5.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_00bb14ca.js', '_3f07ad90.js', '_a0714199.js', '_f614fd6e.js', '_7327658c.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/coupons/Form.vue'), 'resources/js/admin/modals/discounts/Form.vue' => array('file' => 'static/js/1c3f98ac.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_59630b24.js', '_00bb14ca.js', '_3f07ad90.js', '_e9093abc.js', '_a0714199.js', '_b8a8b4d5.js', '_96501d6c.js', '_f614fd6e.js', '_eb1c8fef.js', '_7327658c.js', '_45c7030d.js', '_5e30ba1d.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/discounts/Form.vue'), 'resources/js/admin/modals/dishes/Dish.vue' => array('file' => 'static/js/bf04138e.js', 'imports' => array('_370b921a.js', '_00bb14ca.js', '_b59ce955.js', '_16d96afa.js', '_a54181ad.js', '_a0714199.js', '_b8a8b4d5.js', '_f614fd6e.js', '_7327658c.js', '_45c7030d.js', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/dishes/Dish.vue'), 'resources/js/admin/modals/merchants/Create.vue' => array('file' => 'static/js/d82cd9d3.js', 'imports' => array('_370b921a.js', '_62f67b22.js', '_59630b24.js', '_08207d7d.js', '_d8e65df9.js', '_a0714199.js', '_f614fd6e.js', '_eb1c8fef.js', '_c27b6911.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/merchants/Create.vue'), 'resources/js/admin/modals/merchants/Select.vue' => array('file' => 'static/js/765de2a7.js', 'imports' => array('_08207d7d.js', '_d8e65df9.js', '_f614fd6e.js', '_a54181ad.js', '_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/merchants/Select.vue'), 'resources/js/admin/modals/merchants/bank-accounts/Form.vue' => array('file' => 'static/js/433ab8bb.js', 'imports' => array('_370b921a.js', '_62f67b22.js', '_b59ce955.js', '_a0714199.js', '_f614fd6e.js', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/merchants/bank-accounts/Form.vue'), 'resources/js/admin/modals/orders/Accept.vue' => array('file' => 'static/js/8319e2d8.js', 'imports' => array('_370b921a.js', '_16d96afa.js', '_b8a8b4d5.js', '_f614fd6e.js', '_59630b24.js', '_eb1c8fef.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/orders/Accept.vue'), 'resources/js/admin/modals/orders/Decline.vue' => array('file' => 'static/js/1c8872ba.js', 'imports' => array('_370b921a.js', '_b8a8b4d5.js', '_f614fd6e.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/orders/Decline.vue'), 'resources/js/admin/modals/orders/Receipt.vue' => array('file' => 'static/js/834a7293.js', 'imports' => array('_370b921a.js', '_f614fd6e.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/orders/Receipt.vue'), 'resources/js/admin/modals/regions/Create.vue' => array('file' => 'static/js/73b925ed.js', 'imports' => array('_370b921a.js', '_a0714199.js', '_f614fd6e.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/regions/Create.vue'), 'resources/js/admin/modals/restaurants/Checks.vue' => array('file' => 'static/js/d5b1ecb2.js', 'imports' => array('_e962ceee.js', '_370b921a.js', '_a0714199.js', '_b8a8b4d5.js', '_e9093abc.js', '_f614fd6e.js', '_45c7030d.js', '_7ce54f06.js', '_5e30ba1d.js', '_eb1c8fef.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/restaurants/Checks.vue'), 'resources/js/admin/modals/restaurants/Create.vue' => array('file' => 'static/js/1f1c51e9.js', 'imports' => array('_370b921a.js', '_59630b24.js', '_8d5b8c8c.js', '_a54181ad.js', '_a0714199.js', '_f614fd6e.js', '_e2e9dbc8.js', '_eb1c8fef.js', '_45c7030d.js', '_8603340c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/restaurants/Create.vue'), 'resources/js/admin/modals/restaurants/ThirdPartySelect.vue' => array('file' => 'static/js/2ee14e26.js', 'imports' => array('_370b921a.js', '_f614fd6e.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/restaurants/ThirdPartySelect.vue'), 'resources/js/admin/modals/restaurants/users/Form.vue' => array('file' => 'static/js/e5631037.js', 'imports' => array('_370b921a.js', '_59630b24.js', '_45c7030d.js', '_f614fd6e.js', '_eb1c8fef.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/restaurants/users/Form.vue'), 'resources/js/admin/modals/terminals/Form.vue' => array('file' => 'static/js/24b5daf1.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_d8e65df9.js', '_a0714199.js', '_f614fd6e.js', '_c27b6911.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/terminals/Form.vue'), 'resources/js/admin/modals/topping-groups/Form.vue' => array('file' => 'static/js/871625c0.js', 'imports' => array('_370b921a.js', '_d8e65df9.js', '_b59ce955.js', '_a0714199.js', '_b8a8b4d5.js', '_f614fd6e.js', '_c27b6911.js', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js', '_45c7030d.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/topping-groups/Form.vue'), 'resources/js/admin/modals/topping-groups/Select.vue' => array('file' => 'static/js/8bca032f.js', 'imports' => array('_370b921a.js', '_d8e65df9.js', '_16d96afa.js', '_f614fd6e.js', '_c27b6911.js', '_59630b24.js', '_eb1c8fef.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/topping-groups/Select.vue'), 'resources/js/admin/modals/toppings/Form.vue' => array('file' => 'static/js/6529f03e.js', 'imports' => array('_370b921a.js', '_d8e65df9.js', '_e4111aed.js', '_00bb14ca.js', '_b59ce955.js', '_16d96afa.js', '_a0714199.js', '_f614fd6e.js', '_e2e9dbc8.js', '_c27b6911.js', '_9e3341b0.js', '_3e249caf.js', '_7327658c.js', '_45c7030d.js', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js', '_8603340c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/toppings/Form.vue'), 'resources/js/admin/modals/users/Form.vue' => array('file' => 'static/js/3b2d5a0e.js', 'imports' => array('_370b921a.js', '_08207d7d.js', '_d8e65df9.js', '_a0714199.js', '_f614fd6e.js', '_c27b6911.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/modals/users/Form.vue'), 'resources/js/admin/pages/admins/Form.vue' => array('file' => 'static/js/3ee0fba7.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_a91a466f.js', '_64f9a376.js', '_d8e65df9.js', '_e9093abc.js', '_a0714199.js', 'resources/js/admin/pages/settings/components/SubNavigationCommon.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_c27b6911.js', '_13026abc.js', '_5e30ba1d.js', '_eb1c8fef.js', '_45c7030d.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/admins/Form.vue'), 'resources/js/admin/pages/admins/Index.vue' => array('file' => 'static/js/4d65af5d.js', 'imports' => array('_370b921a.js', '_854c9717.js', '_9740da9c.js', '_cd65597f.js', '_917be386.js', '_7af098c5.js', '_dea06df1.js', '_5f4b8e41.js', '_78996a45.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/admins/Index.vue'), 'resources/js/admin/pages/allergens/Form.vue' => array('file' => 'static/js/b82520b5.js', 'imports' => array('_370b921a.js', '_a91a466f.js', '_64f9a376.js', '_d8e65df9.js', '_1ebc8a12.js', '_a0714199.js', '_c27b6911.js', '_13026abc.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/allergens/Form.vue'), 'resources/js/admin/pages/allergens/Index.vue' => array('file' => 'static/js/4683479b.js', 'imports' => array('_512f03aa.js', '_f1a9e5fc.js', '_cd65597f.js', '_bc417422.js', '_917be386.js', '_7af098c5.js', '_dea06df1.js', '_5f4b8e41.js', 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_370b921a.js', '_c27b6911.js', '_78996a45.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/allergens/Index.vue'), 'resources/js/admin/pages/auth/ForgotPassword.vue' => array('css' => array('static/css/f9a9f07c.css'), 'file' => 'static/js/b8b91773.js', 'imports' => array('_d8e65df9.js', '_a0714199.js', '_46dd6223.js', '_370b921a.js', '_c27b6911.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/auth/ForgotPassword.vue'), 'resources/js/admin/pages/auth/Locked.vue' => array('css' => array('static/css/f9a9f07c.css'), 'file' => 'static/js/933f3d23.js', 'imports' => array('_370b921a.js', '_a0714199.js', '_46dd6223.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/auth/Locked.vue'), 'resources/js/admin/pages/auth/Login.vue' => array('css' => array('static/css/f9a9f07c.css'), 'file' => 'static/js/3fb01692.js', 'imports' => array('_370b921a.js', '_a0714199.js', '_46dd6223.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/auth/Login.vue'), 'resources/js/admin/pages/auth/Profile.vue' => array('file' => 'static/js/143982e8.js', 'imports' => array('_370b921a.js', '_e962ceee.js', '_7522c097.js', 'resources/js/admin/pages/auth/components/navigation/SubNavigation.vue', 'resources/js/admin/pages/auth/components/navigation/TopNavigation.vue', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_c27b6911.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/auth/Profile.vue'), 'resources/js/admin/pages/auth/ResetPassword.vue' => array('css' => array('static/css/f9a9f07c.css'), 'file' => 'static/js/28e26a2d.js', 'imports' => array('_a0714199.js', '_46dd6223.js', '_370b921a.js', '_c27b6911.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/auth/ResetPassword.vue'), 'resources/js/admin/pages/auth/components/navigation/SubNavigation.vue' => array('file' => 'static/js/5e51251c.js', 'imports' => array('resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/auth/components/navigation/SubNavigation.vue'), 'resources/js/admin/pages/auth/components/navigation/TopNavigation.vue' => array('file' => 'static/js/bef31f17.js', 'imports' => array('_a07ed2bc.js', '_c27b6911.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/auth/components/navigation/TopNavigation.vue'), 'resources/js/admin/pages/cities/Form.vue' => array('file' => 'static/js/96baee9c.js', 'imports' => array('_370b921a.js', '_13026abc.js', '_b59ce955.js', '_a91a466f.js', '_d8e65df9.js', '_e9093abc.js', '_a0714199.js', 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js', '_c27b6911.js', '_5e30ba1d.js', '_45c7030d.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/cities/Form.vue'), 'resources/js/admin/pages/cities/Index.vue' => array('file' => 'static/js/5c214846.js', 'imports' => array('_370b921a.js', '_9740da9c.js', '_c2287878.js', '_917be386.js', '_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js', 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_78996a45.js', '_c27b6911.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/cities/Index.vue'), 'resources/js/admin/pages/cities/Show.vue' => array('file' => 'static/js/b5b74816.js', 'imports' => array('_175bf124.js', '_a91a466f.js', '_fa6dbfd1.js', '_a0e8e535.js', '_cd65597f.js', '_bc417422.js', '_d8e65df9.js', '_e9093abc.js', '_a0714199.js', '_b8a8b4d5.js', 'resources/js/admin/admin.ts', 'resources/js/admin/pages/settings/SubNavigation.vue', 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_c27b6911.js', '_370b921a.js', '_5e30ba1d.js', '_eb1c8fef.js', '_45c7030d.js', '_7ce54f06.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_26634ccd.js', '_8f196142.js', '_40838281.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/cities/Show.vue'), 'resources/js/admin/pages/consumers/Affiliates.vue' => array('file' => 'static/js/8086dea1.js', 'imports' => array('resources/js/admin/admin.ts', '_a3a50fa5.js', '_dfd2c82f.js', '_551c3b66.js', '_917be386.js', '_bc417422.js', '_a0e8e535.js', '_f1a9e5fc.js', '_cd65597f.js', '_fa6dbfd1.js', 'resources/js/admin/pages/consumers/SubNavigation.vue', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_26634ccd.js', '_8f196142.js', '_40838281.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/consumers/Affiliates.vue'), 'resources/js/admin/pages/consumers/Coupons.vue' => array('file' => 'static/js/4e0b5476.js', 'imports' => array('resources/js/admin/admin.ts', '_a3a50fa5.js', '_dfd2c82f.js', '_551c3b66.js', '_917be386.js', '_bc417422.js', '_a0e8e535.js', '_f1a9e5fc.js', '_cd65597f.js', '_fa6dbfd1.js', 'resources/js/admin/pages/consumers/SubNavigation.vue', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_26634ccd.js', '_8f196142.js', '_40838281.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/consumers/Coupons.vue'), 'resources/js/admin/pages/consumers/Form.vue' => array('file' => 'static/js/939a9748.js', 'imports' => array('resources/js/admin/admin.ts', '_a91a466f.js', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_b8a8b4d5.js', 'resources/js/admin/pages/consumers/SubNavigation.vue', '_a0e8e535.js', '_bc417422.js', '_cd65597f.js', '_3f07ad90.js', '_00bb14ca.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7ce54f06.js', '_26634ccd.js', '_8f196142.js', '_40838281.js', '_7327658c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/consumers/Form.vue'), 'resources/js/admin/pages/consumers/SubNavigation.vue' => array('file' => 'static/js/6607192b.js', 'imports' => array('_26634ccd.js', '_8f196142.js', '_40838281.js', '_c27b6911.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/consumers/SubNavigation.vue'), 'resources/js/admin/pages/consumers/addresses/Form.vue' => array('file' => 'static/js/c256156b.js', 'imports' => array('resources/js/admin/admin.ts', '_a3a50fa5.js', '_dfd2c82f.js', '_551c3b66.js', '_917be386.js', '_bc417422.js', '_a0e8e535.js', '_f1a9e5fc.js', '_cd65597f.js', '_fa6dbfd1.js', 'resources/js/admin/pages/consumers/SubNavigation.vue', '_a0714199.js', '_a91a466f.js', '_9ef54f8b.js', '_d8e65df9.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_26634ccd.js', '_8f196142.js', '_40838281.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/consumers/addresses/Form.vue'), 'resources/js/admin/pages/consumers/addresses/Index.vue' => array('file' => 'static/js/b6aafd96.js', 'imports' => array('resources/js/admin/admin.ts', '_a3a50fa5.js', '_dfd2c82f.js', '_551c3b66.js', '_917be386.js', '_bc417422.js', '_a0e8e535.js', '_f1a9e5fc.js', '_cd65597f.js', '_fa6dbfd1.js', 'resources/js/admin/pages/consumers/SubNavigation.vue', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_26634ccd.js', '_8f196142.js', '_40838281.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/consumers/addresses/Index.vue'), 'resources/js/admin/pages/consumers/components/navigation/TopNavigationConsumer.vue' => array('file' => 'static/js/fd014a03.js', 'imports' => array('_a07ed2bc.js', '_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/consumers/components/navigation/TopNavigationConsumer.vue'), 'resources/js/admin/pages/consumers/components/navigation/TopNavigationIndex.vue' => array('file' => 'static/js/d30c899b.js', 'imports' => array('_a07ed2bc.js', '_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/consumers/components/navigation/TopNavigationIndex.vue'), 'resources/js/admin/pages/coupons/Form.vue' => array('file' => 'static/js/60893a59.js', 'imports' => array('_a91a466f.js', '_a0e8e535.js', '_cd65597f.js', '_bc417422.js', '_d8e65df9.js', '_3f07ad90.js', '_e9093abc.js', '_a0714199.js', '_b8a8b4d5.js', 'resources/js/admin/admin.ts', 'resources/js/admin/pages/coupons/SubNavigation.vue', '_370b921a.js', '_c27b6911.js', '_5e30ba1d.js', '_eb1c8fef.js', '_45c7030d.js', '_7ce54f06.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_26634ccd.js', '_8f196142.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/coupons/Form.vue'), 'resources/js/admin/pages/coupons/Index.vue' => array('file' => 'static/js/2ba32c13.js', 'imports' => array('_a3a50fa5.js', '_fa6dbfd1.js', '_551c3b66.js', '_a0e8e535.js', '_f1a9e5fc.js', '_cd65597f.js', '_bc417422.js', '_c2287878.js', '_917be386.js', '_dfd2c82f.js', 'resources/js/admin/pages/coupons/SubNavigation.vue', 'resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_26634ccd.js', '_8f196142.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/coupons/Index.vue'), 'resources/js/admin/pages/coupons/SubNavigation.vue' => array('file' => 'static/js/83186a5c.js', 'imports' => array('_26634ccd.js', '_8f196142.js', '_c27b6911.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/coupons/SubNavigation.vue'), 'resources/js/admin/pages/dashboard/Index.vue' => array('file' => 'static/js/f2e9ac4e.js', 'imports' => array('_370b921a.js', 'resources/js/admin/admin.ts', '_fa6dbfd1.js', '_af3926ae.js', '_16d96afa.js', '_a5bd6a5c.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_c27b6911.js', '_7d1fe70e.js', '_917be386.js', '_78996a45.js', '_7af098c5.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js', '_59630b24.js', '_eb1c8fef.js', '_175bf124.js', '_ef6e1107.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/dashboard/Index.vue'), 'resources/js/admin/pages/dashboard/ServiceStates.vue' => array('file' => 'static/js/e694d89b.js', 'imports' => array('_370b921a.js', 'resources/js/admin/admin.ts', '_a0e8e535.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/dashboard/ServiceStates.vue'), 'resources/js/admin/pages/faq/Form.vue' => array('file' => 'static/js/42f73821.js', 'imports' => array('resources/js/admin/admin.ts', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_b8a8b4d5.js', '_a0e8e535.js', '_bc417422.js', '_cd65597f.js', '_1ebc8a12.js', '_a91a466f.js', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', 'resources/js/admin/pages/settings/components/SubNavigationContent.vue', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7ce54f06.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/faq/Form.vue'), 'resources/js/admin/pages/faq/Index.vue' => array('file' => 'static/js/54901fd7.js', 'imports' => array('_c70216c7.js', '_cd65597f.js', '_bc417422.js', '_e4111aed.js', '_917be386.js', '_a0e8e535.js', 'resources/js/admin/admin.ts', 'resources/js/admin/pages/settings/components/SubNavigationContent.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_c27b6911.js', '_370b921a.js', '_9e3341b0.js', '_3e249caf.js', '_78996a45.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/faq/Index.vue'), 'resources/js/admin/pages/kitchens/Form.vue' => array('file' => 'static/js/962111fb.js', 'imports' => array('_370b921a.js', '_a91a466f.js', '_64f9a376.js', '_d8e65df9.js', '_1ebc8a12.js', '_a0714199.js', 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_c27b6911.js', '_13026abc.js', '_45c7030d.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/kitchens/Form.vue'), 'resources/js/admin/pages/kitchens/Index.vue' => array('file' => 'static/js/fb73a493.js', 'imports' => array('_370b921a.js', '_9740da9c.js', '_c2287878.js', '_917be386.js', '_7af098c5.js', '_512f03aa.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js', '_78996a45.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/kitchens/Index.vue'), 'resources/js/admin/pages/merchants/Create.vue' => array('file' => 'static/js/06f37742.js', 'imports' => array('resources/js/admin/admin.ts', '_a3a50fa5.js', '_a0714199.js', '_e9093abc.js', '_a91a466f.js', '_d8e65df9.js', '_3f07ad90.js', '_7855c332.js', 'resources/js/admin/pages/merchants/components/navigation/TopNavigationIndex.vue', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_3e249caf.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/Create.vue'), 'resources/js/admin/pages/merchants/Index.vue' => array('file' => 'static/js/1bbf6e36.js', 'imports' => array('_370b921a.js', '_947a95da.js', '_a0e2ed60.js', '_fa6dbfd1.js', '_7af098c5.js', '_c27b6911.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/Index.vue'), 'resources/js/admin/pages/merchants/Show.vue' => array('file' => 'static/js/0d6a0c79.js', 'imports' => array('_370b921a.js', '_947a95da.js', '_cc81708d.js', '_287a582e.js', '_e962ceee.js', '_7522c097.js', '_e1870c3b.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/Show.vue'), 'resources/js/admin/pages/merchants/SubNavigation.vue' => array('file' => 'static/js/6950d7b2.js', 'imports' => array('_26634ccd.js', '_8f196142.js', '_c27b6911.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/SubNavigation.vue'), 'resources/js/admin/pages/merchants/addresses/Index.vue' => array('file' => 'static/js/0fd2655b.js', 'imports' => array('_370b921a.js', '_a3a50fa5.js', 'resources/js/admin/admin.ts', '_a91a466f.js', '_7855c332.js', '_a0e8e535.js', '_cd65597f.js', '_bc417422.js', '_d8e65df9.js', '_3f07ad90.js', '_e9093abc.js', '_a0714199.js', '_917be386.js', 'resources/js/admin/pages/merchants/SubNavigation.vue', 'resources/js/admin/pages/merchants/components/navigation/TopNavigationMerchant.vue', '_c27b6911.js', '_3e249caf.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_5e30ba1d.js', '_eb1c8fef.js', '_45c7030d.js', '_78996a45.js', '_26634ccd.js', '_8f196142.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/addresses/Index.vue'), 'resources/js/admin/pages/merchants/bank-accounts/Form.vue' => array('file' => 'static/js/686ced22.js', 'imports' => array('resources/js/admin/admin.ts', '_a3a50fa5.js', '_a0714199.js', '_e9093abc.js', '_a91a466f.js', '_d8e65df9.js', '_3f07ad90.js', 'resources/js/admin/pages/merchants/SubNavigation.vue', '_a0e8e535.js', '_bc417422.js', '_917be386.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_3e249caf.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_26634ccd.js', '_8f196142.js', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/bank-accounts/Form.vue'), 'resources/js/admin/pages/merchants/bank-accounts/Index.vue' => array('file' => 'static/js/cffaab9e.js', 'imports' => array('_370b921a.js', '_cc81708d.js', '_854c9717.js', '_917be386.js', '_7af098c5.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js', 'resources/js/admin/pages/merchants/components/navigation/TopNavigationMerchant.vue', '_78996a45.js', '_c27b6911.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/bank-accounts/Index.vue'), 'resources/js/admin/pages/merchants/compliance/Index.vue' => array('file' => 'static/js/f66fdba6.js', 'imports' => array('_370b921a.js', '_947a95da.js', '_a0e2ed60.js', '_7af098c5.js', '_c27b6911.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/compliance/Index.vue'), 'resources/js/admin/pages/merchants/components/navigation/SubNavigationIndex.vue' => array('file' => 'static/js/b98cd0b1.js', 'imports' => array('resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/components/navigation/SubNavigationIndex.vue'), 'resources/js/admin/pages/merchants/components/navigation/TopNavigationIndex.vue' => array('file' => 'static/js/970f16c7.js', 'imports' => array('_a07ed2bc.js', '_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/components/navigation/TopNavigationIndex.vue'), 'resources/js/admin/pages/merchants/components/navigation/TopNavigationMerchant.vue' => array('file' => 'static/js/805f2f3a.js', 'imports' => array('_a07ed2bc.js', '_c27b6911.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/components/navigation/TopNavigationMerchant.vue'), 'resources/js/admin/pages/merchants/contacts/Form.vue' => array('file' => 'static/js/42dc0fd1.js', 'imports' => array('resources/js/admin/admin.ts', '_a3a50fa5.js', '_a0714199.js', '_e9093abc.js', '_a91a466f.js', '_d8e65df9.js', '_3f07ad90.js', 'resources/js/admin/pages/merchants/SubNavigation.vue', '_a0e8e535.js', '_bc417422.js', '_917be386.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_3e249caf.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_26634ccd.js', '_8f196142.js', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/contacts/Form.vue'), 'resources/js/admin/pages/merchants/contacts/Index.vue' => array('file' => 'static/js/eee32dfa.js', 'imports' => array('_a0e2ed60.js', '_370b921a.js', '_7af098c5.js', '_c27b6911.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/contacts/Index.vue'), 'resources/js/admin/pages/merchants/settlements/Index.vue' => array('file' => 'static/js/1c2f3ecb.js', 'imports' => array('_c2287878.js', '_917be386.js', '_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_512f03aa.js', '_370b921a.js', '_78996a45.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/settlements/Index.vue'), 'resources/js/admin/pages/merchants/settlements/Show.vue' => array('file' => 'static/js/27138c22.js', 'imports' => array('resources/js/admin/admin.ts', '_a3a50fa5.js', '_a0714199.js', '_e9093abc.js', '_a91a466f.js', '_d8e65df9.js', '_3f07ad90.js', 'resources/js/admin/pages/merchants/SubNavigation.vue', '_c27b6911.js', '_370b921a.js', '_287a582e.js', '_a0e8e535.js', '_917be386.js', 'resources/js/admin/pages/merchants/components/navigation/TopNavigationMerchant.vue', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_3e249caf.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_26634ccd.js', '_8f196142.js', '_78996a45.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/settlements/Show.vue'), 'resources/js/admin/pages/merchants/ubos/Form.vue' => array('file' => 'static/js/9503324d.js', 'imports' => array('resources/js/admin/admin.ts', '_a3a50fa5.js', '_a0714199.js', '_e9093abc.js', '_a91a466f.js', '_d8e65df9.js', '_3f07ad90.js', 'resources/js/admin/pages/merchants/SubNavigation.vue', '_a0e8e535.js', '_bc417422.js', '_917be386.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_3e249caf.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_26634ccd.js', '_8f196142.js', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/ubos/Form.vue'), 'resources/js/admin/pages/merchants/ubos/Index.vue' => array('file' => 'static/js/37668463.js', 'imports' => array('_a0e2ed60.js', '_370b921a.js', '_7af098c5.js', '_c27b6911.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/merchants/ubos/Index.vue'), 'resources/js/admin/pages/news/Form.vue' => array('file' => 'static/js/2c1425ab.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_64f9a376.js', '_3f07ad90.js', '_1ebc8a12.js', '_e9093abc.js', '_a0714199.js', '_a91a466f.js', '_d8e65df9.js', '_13026abc.js', '_5e30ba1d.js', '_eb1c8fef.js', '_45c7030d.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/news/Form.vue'), 'resources/js/admin/pages/news/Index.vue' => array('file' => 'static/js/24383fc4.js', 'imports' => array('_512f03aa.js', '_854c9717.js', '_9740da9c.js', '_cd65597f.js', '_917be386.js', '_7af098c5.js', '_dea06df1.js', '_5f4b8e41.js', '_370b921a.js', '_c27b6911.js', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/news/Index.vue'), 'resources/js/admin/pages/orders/Index.vue' => array('file' => 'static/js/281fb0fa.js', 'imports' => array('_370b921a.js', 'resources/js/admin/admin.ts', '_af3926ae.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_c27b6911.js', '_7d1fe70e.js', '_917be386.js', '_78996a45.js', '_7af098c5.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/orders/Index.vue'), 'resources/js/admin/pages/orders/Show.vue' => array('file' => 'static/js/7e012b30.js', 'imports' => array('_7d1fe70e.js', '_e962ceee.js', '_7522c097.js', '_e1870c3b.js', '_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/orders/Show.vue'), 'resources/js/admin/pages/orders/SubNavigation.vue' => array('file' => 'static/js/ef8e3d36.js', 'imports' => array('_e9093abc.js', '_26634ccd.js', '_40838281.js', '_8f196142.js', '_c27b6911.js', '_370b921a.js', '_5e30ba1d.js', '_eb1c8fef.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/orders/SubNavigation.vue'), 'resources/js/admin/pages/orders/components/navigation/TopNavigation.vue' => array('file' => 'static/js/7e3ead95.js', 'imports' => array('_a07ed2bc.js', '_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/orders/components/navigation/TopNavigation.vue'), 'resources/js/admin/pages/orders/components/navigation/TopNavigationOrder.vue' => array('file' => 'static/js/8c3a4c0c.js', 'imports' => array('_1335f829.js', '_a07ed2bc.js', '_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/orders/components/navigation/TopNavigationOrder.vue'), 'resources/js/admin/pages/orders/order/Receipt.vue' => array('file' => 'static/js/1b005bfd.js', 'imports' => array('_a91a466f.js', 'resources/js/admin/pages/orders/components/navigation/TopNavigationOrder.vue', '_370b921a.js', '_c27b6911.js', '_1335f829.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/orders/order/Receipt.vue'), 'resources/js/admin/pages/orders/order/Rows.vue' => array('file' => 'static/js/00b8b91d.js', 'imports' => array('_a0e8e535.js', 'resources/js/admin/pages/orders/components/navigation/TopNavigationOrder.vue', '_370b921a.js', '_c27b6911.js', '_1335f829.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/orders/order/Rows.vue'), 'resources/js/admin/pages/orders/order/SubNavigation.vue' => array('file' => 'static/js/6105c569.js', 'imports' => array('_e9093abc.js', '_26634ccd.js', '_40838281.js', '_8f196142.js', '_c27b6911.js', '_370b921a.js', '_5e30ba1d.js', '_eb1c8fef.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/orders/order/SubNavigation.vue'), 'resources/js/admin/pages/orders/order/Transactions.vue' => array('file' => 'static/js/cf9e39b2.js', 'imports' => array('_a0e8e535.js', 'resources/js/admin/pages/orders/components/navigation/TopNavigationOrder.vue', '_917be386.js', '_370b921a.js', '_c27b6911.js', '_1335f829.js', '_a07ed2bc.js', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/orders/order/Transactions.vue'), 'resources/js/admin/pages/pages/Form.vue' => array('file' => 'static/js/dbbb24f2.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_d8e65df9.js', '_1ebc8a12.js', '_e9093abc.js', '_a0714199.js', '_b8a8b4d5.js', '_a91a466f.js', '_64f9a376.js', 'resources/js/admin/pages/settings/components/SubNavigationContent.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_c27b6911.js', '_5e30ba1d.js', '_eb1c8fef.js', '_45c7030d.js', '_7ce54f06.js', '_13026abc.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/pages/Form.vue'), 'resources/js/admin/pages/pages/Index.vue' => array('file' => 'static/js/504dd4e0.js', 'imports' => array('_c70216c7.js', '_854c9717.js', '_7af098c5.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js', '_cd65597f.js', '_bc417422.js', '_917be386.js', '_370b921a.js', 'resources/js/admin/pages/settings/components/SubNavigationContent.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_c27b6911.js', '_78996a45.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/pages/Index.vue'), 'resources/js/admin/pages/payment-methods/Form.vue' => array('file' => 'static/js/af6e1e75.js', 'imports' => array('_370b921a.js', '_a91a466f.js', '_d8e65df9.js', '_64f9a376.js', 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_7327658c.js', '_ceafcdf0.js', '_45c7030d.js', '_c27b6911.js', '_13026abc.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/payment-methods/Form.vue'), 'resources/js/admin/pages/payment-methods/Index.vue' => array('file' => 'static/js/4af86df7.js', 'imports' => array('_370b921a.js', '_9740da9c.js', '_c2287878.js', '_917be386.js', '_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js', 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_78996a45.js', '_c27b6911.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/payment-methods/Index.vue'), 'resources/js/admin/pages/payment-methods/Show.vue' => array('file' => 'static/js/4d96c80f.js', 'imports' => array('_a91a466f.js', '_a0e8e535.js', '_cd65597f.js', '_bc417422.js', '_d8e65df9.js', '_e9093abc.js', '_a0714199.js', '_b8a8b4d5.js', 'resources/js/admin/admin.ts', 'resources/js/admin/pages/settings/SubNavigation.vue', '_c27b6911.js', '_370b921a.js', '_5e30ba1d.js', '_eb1c8fef.js', '_45c7030d.js', '_7ce54f06.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_26634ccd.js', '_8f196142.js', '_40838281.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/payment-methods/Show.vue'), 'resources/js/admin/pages/regions/Form.vue' => array('file' => 'static/js/de35f587.js', 'imports' => array('_9ef54f8b.js', '_370b921a.js', 'resources/js/admin/admin.ts', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_b8a8b4d5.js', 'resources/js/admin/pages/settings/SubNavigation.vue', '_a0e8e535.js', '_bc417422.js', '_cd65597f.js', '_a91a466f.js', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7ce54f06.js', '_26634ccd.js', '_8f196142.js', '_40838281.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/regions/Form.vue'), 'resources/js/admin/pages/regions/Index.vue' => array('file' => 'static/js/46707df6.js', 'imports' => array('_370b921a.js', '_9740da9c.js', '_c2287878.js', '_917be386.js', '_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js', 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue', 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue', '_78996a45.js', '_c27b6911.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/regions/Index.vue'), 'resources/js/admin/pages/reports/SubNavigation.vue' => array('file' => 'static/js/d296eee6.js', 'imports' => array('_26634ccd.js', '_8f196142.js', '_c27b6911.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/reports/SubNavigation.vue'), 'resources/js/admin/pages/reports/referrals/Index.vue' => array('file' => 'static/js/1a8e11e1.js', 'imports' => array('_a3a50fa5.js', '_fa6dbfd1.js', '_551c3b66.js', '_a0e8e535.js', '_f1a9e5fc.js', '_cd65597f.js', '_c2287878.js', '_917be386.js', '_dfd2c82f.js', '_26634ccd.js', 'resources/js/admin/pages/reports/SubNavigation.vue', 'resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_8f196142.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/reports/referrals/Index.vue'), 'resources/js/admin/pages/reports/settlements/Index.vue' => array('file' => 'static/js/9fd34508.js', 'imports' => array('_a3a50fa5.js', '_fa6dbfd1.js', '_551c3b66.js', '_a0e8e535.js', '_b53a5748.js', '_f1a9e5fc.js', '_cd65597f.js', '_c2287878.js', '_917be386.js', '_dfd2c82f.js', '_26634ccd.js', 'resources/js/admin/pages/reports/SubNavigation.vue', 'resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_8f196142.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/reports/settlements/Index.vue'), 'resources/js/admin/pages/reports/settlements/Show.vue' => array('file' => 'static/js/fc893989.js', 'imports' => array('_a3a50fa5.js', '_a91a466f.js', '_fa6dbfd1.js', '_551c3b66.js', '_a0e8e535.js', '_b53a5748.js', '_f1a9e5fc.js', '_cd65597f.js', '_c2287878.js', '_917be386.js', '_dfd2c82f.js', '_26634ccd.js', 'resources/js/admin/pages/reports/SubNavigation.vue', 'resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_8f196142.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/reports/settlements/Show.vue'), 'resources/js/admin/pages/reports/transactions/Index.vue' => array('file' => 'static/js/9e2c9cc5.js', 'imports' => array('_a3a50fa5.js', '_fa6dbfd1.js', '_551c3b66.js', '_a0e8e535.js', '_b53a5748.js', '_f1a9e5fc.js', '_cd65597f.js', '_c2287878.js', '_917be386.js', '_dfd2c82f.js', '_26634ccd.js', 'resources/js/admin/pages/reports/SubNavigation.vue', 'resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_8f196142.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/reports/transactions/Index.vue'), 'resources/js/admin/pages/reports/transactions/Show.vue' => array('file' => 'static/js/e4037c02.js', 'imports' => array('_a3a50fa5.js', '_a91a466f.js', '_fa6dbfd1.js', '_551c3b66.js', '_a0e8e535.js', '_b53a5748.js', '_f1a9e5fc.js', '_cd65597f.js', '_c2287878.js', '_917be386.js', '_dfd2c82f.js', '_26634ccd.js', 'resources/js/admin/pages/reports/SubNavigation.vue', 'resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_8f196142.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/reports/transactions/Show.vue'), 'resources/js/admin/pages/restaurant-groups/Form.vue' => array('file' => 'static/js/1c696caa.js', 'imports' => array('_370b921a.js', '_16d96afa.js', '_a91a466f.js', '_d8e65df9.js', '_a0714199.js', '_59630b24.js', '_eb1c8fef.js', '_c27b6911.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurant-groups/Form.vue'), 'resources/js/admin/pages/restaurant-groups/Index.vue' => array('file' => 'static/js/dde405bb.js', 'imports' => array('_a0e8e535.js', '_b53a5748.js', '_cd65597f.js', '_917be386.js', '_370b921a.js', '_c27b6911.js', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurant-groups/Index.vue'), 'resources/js/admin/pages/restaurants/Index.vue' => array('file' => 'static/js/93e25f9b.js', 'imports' => array('_370b921a.js', 'resources/js/admin/admin.ts', '_fa6dbfd1.js', '_cc81708d.js', '_854c9717.js', '_cd65597f.js', '_c2287878.js', '_16d96afa.js', '_917be386.js', '_7af098c5.js', '_512f03aa.js', '_dea06df1.js', '_5f4b8e41.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_c27b6911.js', '_59630b24.js', '_eb1c8fef.js', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/Index.vue'), 'resources/js/admin/pages/restaurants/Show.vue' => array('file' => 'static/js/1cd30062.js', 'imports' => array('_370b921a.js', 'resources/js/admin/admin.ts', '_cc81708d.js', '_e962ceee.js', '_7522c097.js', '_e1870c3b.js', '_7af098c5.js', '_43973dbc.js', '_5f4b8e41.js', '_a5bd6a5c.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_c27b6911.js', '_175bf124.js', '_ef6e1107.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/Show.vue'), 'resources/js/admin/pages/restaurants/categories/Form.vue' => array('file' => 'static/js/6b200fd2.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_16d96afa.js', '_a91a466f.js', '_d8e65df9.js', '_b59ce955.js', '_a54181ad.js', '_a0714199.js', '_b8a8b4d5.js', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationDishes.vue', '_2db2ef59.js', '_59630b24.js', '_eb1c8fef.js', '_c27b6911.js', '_d1e40df9.js', '_45c7030d.js', '_7ce54f06.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_1335f829.js', '_a07ed2bc.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/categories/Form.vue'), 'resources/js/admin/pages/restaurants/categories/Index.vue' => array('file' => 'static/js/8a5a2d87.js', 'imports' => array('_370b921a.js', '_c70216c7.js', '_854c9717.js', '_f1a9e5fc.js', '_cd65597f.js', '_e4111aed.js', '_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js', '_9e3341b0.js', '_3e249caf.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/categories/Index.vue'), 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationDishes.vue' => array('file' => 'static/js/c7054442.js', 'imports' => array('resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationDishes.vue'), 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue' => array('file' => 'static/js/3b394312.js', 'imports' => array('resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue'), 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationIndex.vue' => array('file' => 'static/js/54e7060b.js', 'imports' => array('_26634ccd.js', '_8f196142.js', '_e9093abc.js', '_c27b6911.js', '_370b921a.js', '_5e30ba1d.js', '_eb1c8fef.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationIndex.vue'), 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationOrders.vue' => array('file' => 'static/js/f22b8428.js', 'imports' => array('_370b921a.js', 'resources/js/admin/admin.ts', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationOrders.vue'), 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue' => array('file' => 'static/js/90de8ff4.js', 'imports' => array('_c27b6911.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue'), 'resources/js/admin/pages/restaurants/components/navigation/TopNavigationEdit.vue' => array('file' => 'static/js/6f6a1dd4.js', 'imports' => array('_2db2ef59.js', '_370b921a.js', '_1335f829.js', '_a07ed2bc.js', '_c27b6911.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/components/navigation/TopNavigationEdit.vue'), 'resources/js/admin/pages/restaurants/components/navigation/TopNavigationIndex.vue' => array('file' => 'static/js/60771d3c.js', 'imports' => array('_a07ed2bc.js', '_310db65c.js', '_1335f829.js', '_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/components/navigation/TopNavigationIndex.vue'), 'resources/js/admin/pages/restaurants/coupons/Index.vue' => array('file' => 'static/js/9df448dd.js', 'imports' => array('_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js', '_917be386.js', '_3845a5e6.js', '_f1a9e5fc.js', '_370b921a.js', '_c27b6911.js', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/coupons/Index.vue'), 'resources/js/admin/pages/restaurants/discounts/Index.vue' => array('file' => 'static/js/bf9f358d.js', 'imports' => array('_854c9717.js', '_f1a9e5fc.js', '_cd65597f.js', '_917be386.js', '_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js', '_370b921a.js', '_78996a45.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/discounts/Index.vue'), 'resources/js/admin/pages/restaurants/dishes/Form.vue' => array('file' => 'static/js/b2377b1d.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_7327658c.js', '_a91a466f.js', '_64f9a376.js', '_b53a5748.js', '_cd65597f.js', '_e4111aed.js', '_b59ce955.js', '_16d96afa.js', '_a54181ad.js', '_a0714199.js', '_b8a8b4d5.js', '_7af098c5.js', '_43973dbc.js', '_5f4b8e41.js', '_45c7030d.js', '_c27b6911.js', '_13026abc.js', '_9e3341b0.js', '_3e249caf.js', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/dishes/Form.vue'), 'resources/js/admin/pages/restaurants/dishes/Index.vue' => array('file' => 'static/js/6c8c5714.js', 'imports' => array('_370b921a.js', '_c70216c7.js', '_7855c332.js', '_854c9717.js', '_3845a5e6.js', '_f1a9e5fc.js', '_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/dishes/Index.vue'), 'resources/js/admin/pages/restaurants/dishes/QuickForm.vue' => array('file' => 'static/js/b604c392.js', 'imports' => array('_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/dishes/QuickForm.vue'), 'resources/js/admin/pages/restaurants/dishes/Show.vue' => array('file' => 'static/js/9a4d4f15.js', 'imports' => array('_370b921a.js', '_a0714199.js', '_b8a8b4d5.js', '_45c7030d.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/dishes/Show.vue'), 'resources/js/admin/pages/restaurants/edit/FormAvailabilities.css' => array('file' => 'static/css/cab42627.css', 'src' => 'resources/js/admin/pages/restaurants/edit/FormAvailabilities.css'), 'resources/js/admin/pages/restaurants/edit/FormAvailabilities.vue' => array('css' => array('static/css/cab42627.css'), 'file' => 'static/js/4c3d2412.js', 'imports' => array('_370b921a.js', '_d8e65df9.js', '_3f07ad90.js', '_c27b6911.js', '_16d96afa.js', '_96501d6c.js', '_b43a6e2b.js', '_7af098c5.js', '_5f4b8e41.js', '_e2e9dbc8.js', '_a0714199.js', '_45c7030d.js', '_59630b24.js', '_eb1c8fef.js', '_8603340c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/edit/FormAvailabilities.vue'), 'resources/js/admin/pages/restaurants/edit/FormCommon.vue' => array('file' => 'static/js/ec93198a.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_8d5b8c8c.js', '_a91a466f.js', '_d8e65df9.js', '_b59ce955.js', '_16d96afa.js', '_a54181ad.js', '_a0714199.js', '_b8a8b4d5.js', '_e2e9dbc8.js', '_c27b6911.js', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js', '_45c7030d.js', '_7ce54f06.js', '_8603340c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/edit/FormCommon.vue'), 'resources/js/admin/pages/restaurants/edit/FormDishMenu.vue' => array('file' => 'static/js/869c4c05.js', 'imports' => array('_370b921a.js', '_a91a466f.js', '_d8e65df9.js', '_b59ce955.js', '_c27b6911.js', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/edit/FormDishMenu.vue'), 'resources/js/admin/pages/restaurants/edit/FormImport.vue' => array('file' => 'static/js/c068e6c8.js', 'imports' => array('resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', 'resources/js/admin/pages/restaurants/edit/components/SubNavigation.vue', '_a91a466f.js', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_00bb14ca.js', '_b8a8b4d5.js', '_2db2ef59.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7327658c.js', '_7ce54f06.js', '_1335f829.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/edit/FormImport.vue'), 'resources/js/admin/pages/restaurants/edit/FormOrders.vue' => array('file' => 'static/js/113268f4.js', 'imports' => array('_370b921a.js', '_a91a466f.js', '_d8e65df9.js', '_00bb14ca.js', '_e9093abc.js', '_b59ce955.js', '_a0714199.js', '_1335f829.js', '_e2e9dbc8.js', '_c27b6911.js', '_7327658c.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_d1e40df9.js', '_59630b24.js', '_a07ed2bc.js', '_8603340c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/edit/FormOrders.vue'), 'resources/js/admin/pages/restaurants/edit/FormPrinter.vue' => array('file' => 'static/js/3c5be674.js', 'imports' => array('resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', 'resources/js/admin/pages/restaurants/edit/components/SubNavigation.vue', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_00bb14ca.js', '_a91a466f.js', '_2db2ef59.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7327658c.js', '_1335f829.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/edit/FormPrinter.vue'), 'resources/js/admin/pages/restaurants/edit/FormReminderCalls.vue' => array('file' => 'static/js/a412123b.js', 'imports' => array('_370b921a.js', '_a91a466f.js', '_bc417422.js', '_d8e65df9.js', '_b59ce955.js', '_a0714199.js', '_c27b6911.js', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/edit/FormReminderCalls.vue'), 'resources/js/admin/pages/restaurants/edit/FormSubscriptions.vue' => array('file' => 'static/js/b17877ad.js', 'imports' => array('resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', 'resources/js/admin/pages/restaurants/edit/components/SubNavigation.vue', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_00bb14ca.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7327658c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/edit/FormSubscriptions.vue'), 'resources/js/admin/pages/restaurants/edit/Tables.vue' => array('file' => 'static/js/00979e67.js', 'imports' => array('_9e3341b0.js', '_c27b6911.js', '_370b921a.js', '_a0e8e535.js', '_d8e65df9.js', '_3f07ad90.js', '_e9093abc.js', '_a0714199.js', '_96501d6c.js', '_b43a6e2b.js', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', 'resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/edit/components/SubNavigation.vue', '_3e249caf.js', '_5e30ba1d.js', '_eb1c8fef.js', '_45c7030d.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/edit/Tables.vue'), 'resources/js/admin/pages/restaurants/edit/components/SubNavigation.vue' => array('file' => 'static/js/c26a6c9d.js', 'imports' => array('resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/edit/components/SubNavigation.vue'), 'resources/js/admin/pages/restaurants/edit/components/TopNavigation.vue' => array('file' => 'static/js/af101151.js', 'imports' => array('_a07ed2bc.js', '_c27b6911.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/edit/components/TopNavigation.vue'), 'resources/js/admin/pages/restaurants/import/Index.vue' => array('file' => 'static/js/e304382a.js', 'imports' => array('_370b921a.js', '_a91a466f.js', '_d8e65df9.js', '_00bb14ca.js', '_b59ce955.js', '_a0714199.js', '_b8a8b4d5.js', '_1335f829.js', '_c27b6911.js', '_7327658c.js', '_45c7030d.js', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js', '_7ce54f06.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/import/Index.vue'), 'resources/js/admin/pages/restaurants/logs/Index.vue' => array('file' => 'static/js/3c9fd353.js', 'imports' => array('resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', '_dfd2c82f.js', '_917be386.js', '_a0e8e535.js', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/logs/Index.vue'), 'resources/js/admin/pages/restaurants/media/Form.vue' => array('file' => 'static/js/73e8edd0.js', 'imports' => array('_370b921a.js', '_a91a466f.js', '_64f9a376.js', '_da92063f.js', '_d8e65df9.js', '_c27b6911.js', '_13026abc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/media/Form.vue'), 'resources/js/admin/pages/restaurants/notifications/Index.vue' => array('file' => 'static/js/701631bf.js', 'imports' => array('resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', '_dfd2c82f.js', '_917be386.js', '_a0e8e535.js', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/notifications/Index.vue'), 'resources/js/admin/pages/restaurants/orders/Index.vue' => array('file' => 'static/js/456ce343.js', 'imports' => array('_370b921a.js', '_af3926ae.js', '_7d1fe70e.js', '_917be386.js', '_78996a45.js', '_c27b6911.js', '_7af098c5.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/orders/Index.vue'), 'resources/js/admin/pages/restaurants/orders/Show.vue' => array('file' => 'static/js/59b55cf4.js', 'imports' => array('resources/js/admin/admin.ts', '_a3a50fa5.js', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_3e249caf.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/orders/Show.vue'), 'resources/js/admin/pages/restaurants/payouts/Form.vue' => array('file' => 'static/js/996bafd3.js', 'imports' => array('_370b921a.js', '_45c7030d.js', '_a91a466f.js', '_854c9717.js', '_d8e65df9.js', '_16d96afa.js', '_c27b6911.js', '_59630b24.js', '_eb1c8fef.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/payouts/Form.vue'), 'resources/js/admin/pages/restaurants/regions/Form.vue' => array('file' => 'static/js/4d04d4ad.js', 'imports' => array('_370b921a.js', '_16d96afa.js', '_a91a466f.js', '_00bb14ca.js', '_a0714199.js', '_96501d6c.js', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', 'resources/js/admin/pages/restaurants/edit/components/SubNavigation.vue', '_59630b24.js', '_eb1c8fef.js', '_c27b6911.js', '_7327658c.js', '_45c7030d.js', 'resources/js/admin/admin.ts', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/regions/Form.vue'), 'resources/js/admin/pages/restaurants/regions/Index.vue' => array('file' => 'static/js/edbdfec0.js', 'imports' => array('_370b921a.js', '_9740da9c.js', '_3845a5e6.js', '_bc417422.js', '_d8e65df9.js', '_00bb14ca.js', '_a0714199.js', '_b43a6e2b.js', '_917be386.js', '_7af098c5.js', '_43973dbc.js', '_5f4b8e41.js', '_c7c99aae.js', '_c27b6911.js', '_7327658c.js', '_45c7030d.js', '_78996a45.js', '_745abfaf.js', '_8603340c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/regions/Index.vue'), 'resources/js/admin/pages/restaurants/seo/Form.vue' => array('file' => 'static/js/bc7bea66.js', 'imports' => array('_370b921a.js', '_45c7030d.js', '_a91a466f.js', '_d8e65df9.js', '_b59ce955.js', '_b8a8b4d5.js', '_c27b6911.js', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/seo/Form.vue'), 'resources/js/admin/pages/restaurants/topping-groups/Form.vue' => array('file' => 'static/js/6b84962b.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_a91a466f.js', '_9740da9c.js', '_cd65597f.js', '_d8e65df9.js', '_e4111aed.js', '_b59ce955.js', '_a0714199.js', '_b8a8b4d5.js', '_7af098c5.js', '_43973dbc.js', '_5f4b8e41.js', '_c27b6911.js', '_9e3341b0.js', '_3e249caf.js', '_d1e40df9.js', '_59630b24.js', '_eb1c8fef.js', '_45c7030d.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/topping-groups/Form.vue'), 'resources/js/admin/pages/restaurants/topping-groups/Index.vue' => array('file' => 'static/js/cb519498.js', 'imports' => array('_854c9717.js', '_f1a9e5fc.js', '_cd65597f.js', '_7af098c5.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js', '_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/topping-groups/Index.vue'), 'resources/js/admin/pages/restaurants/users/Index.vue' => array('file' => 'static/js/430b3e1d.js', 'imports' => array('_854c9717.js', '_f1a9e5fc.js', '_cd65597f.js', '_c2287878.js', '_917be386.js', '_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js', '_370b921a.js', '_78996a45.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/users/Index.vue'), 'resources/js/admin/pages/restaurants/vendibles/Navigation.vue' => array('file' => 'static/js/1821dc8f.js', 'imports' => array('_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/vendibles/Navigation.vue'), 'resources/js/admin/pages/restaurants/vendibles/purchases/Form.vue' => array('file' => 'static/js/abcb905e.js', 'imports' => array('resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/vendibles/Navigation.vue', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_b8a8b4d5.js', '_a0e8e535.js', '_bc417422.js', '_cd65597f.js', '_a91a466f.js', '_3f07ad90.js', '_00bb14ca.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7ce54f06.js', '_7327658c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/vendibles/purchases/Form.vue'), 'resources/js/admin/pages/restaurants/vendibles/purchases/Index.vue' => array('file' => 'static/js/be6d0b61.js', 'imports' => array('resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/vendibles/Navigation.vue', '_917be386.js', '_9e3341b0.js', '_c2287878.js', '_a0e8e535.js', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', '_b53a5748.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_78996a45.js', '_3e249caf.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/vendibles/purchases/Index.vue'), 'resources/js/admin/pages/restaurants/vendibles/purchases/Show.vue' => array('file' => 'static/js/5659141d.js', 'imports' => array('_9e3341b0.js', '_a91a466f.js', '_a0e8e535.js', '_b53a5748.js', '_c2287878.js', '_917be386.js', 'resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', 'resources/js/admin/pages/restaurants/vendibles/Navigation.vue', '_c27b6911.js', '_370b921a.js', '_3e249caf.js', '_78996a45.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/vendibles/purchases/Show.vue'), 'resources/js/admin/pages/restaurants/vendibles/subscriptions/Form.vue' => array('file' => 'static/js/ab41f0a1.js', 'imports' => array('resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/vendibles/Navigation.vue', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_b8a8b4d5.js', '_a0e8e535.js', '_bc417422.js', '_cd65597f.js', '_a91a466f.js', '_3f07ad90.js', '_00bb14ca.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7ce54f06.js', '_7327658c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/vendibles/subscriptions/Form.vue'), 'resources/js/admin/pages/restaurants/vendibles/subscriptions/Index.vue' => array('file' => 'static/js/459badde.js', 'imports' => array('resources/js/admin/admin.ts', 'resources/js/admin/pages/restaurants/vendibles/Navigation.vue', 'resources/js/admin/pages/restaurants/components/navigation/SubNavigationEdit.vue', '_917be386.js', '_9e3341b0.js', '_a3a50fa5.js', '_c2287878.js', '_a0e8e535.js', '_b53a5748.js', '_cd65597f.js', '_f1a9e5fc.js', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', 'resources/js/admin/pages/restaurants/components/navigation/TopHeaderRestaurant.vue', '_78996a45.js', '_3e249caf.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/restaurants/vendibles/subscriptions/Index.vue'), 'resources/js/admin/pages/reviews/Index.vue' => array('file' => 'static/js/4d8b23be.js', 'imports' => array('_917be386.js', '_fa6dbfd1.js', '_a0e8e535.js', '_bc417422.js', '_370b921a.js', '_78996a45.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/reviews/Index.vue'), 'resources/js/admin/pages/settings/Common.vue' => array('file' => 'static/js/50c735aa.js', 'imports' => array('_370b921a.js', '_a91a466f.js', '_d8e65df9.js', '_e9093abc.js', '_b59ce955.js', '_a0714199.js', '_c27b6911.js', '_5e30ba1d.js', '_eb1c8fef.js', '_d1e40df9.js', '_59630b24.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/settings/Common.vue'), 'resources/js/admin/pages/settings/SubNavigation.vue' => array('file' => 'static/js/16a521dc.js', 'imports' => array('_26634ccd.js', '_8f196142.js', '_40838281.js', '_c27b6911.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/settings/SubNavigation.vue'), 'resources/js/admin/pages/settings/components/SubNavigationCommon.vue' => array('file' => 'static/js/cc8ed099.js', 'imports' => array('resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/settings/components/SubNavigationCommon.vue'), 'resources/js/admin/pages/settings/components/SubNavigationContent.vue' => array('file' => 'static/js/03da159c.js', 'imports' => array('resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/settings/components/SubNavigationContent.vue'), 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue' => array('file' => 'static/js/6b7c3137.js', 'imports' => array('resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/settings/components/SubNavigationEntities.vue'), 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue' => array('file' => 'static/js/7d2f90d8.js', 'imports' => array('_a07ed2bc.js', '_c27b6911.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/settings/components/TopNavigationIndex.vue'), 'resources/js/admin/pages/settings/media/Index.vue' => array('file' => 'static/js/7f7c5e44.js', 'imports' => array('_370b921a.js', '_64f9a376.js', '_a91a466f.js', '_da92063f.js', '_d8e65df9.js', '_13026abc.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/settings/media/Index.vue'), 'resources/js/admin/pages/settings/redirects/Form.vue' => array('file' => 'static/js/3e460544.js', 'imports' => array('resources/js/admin/admin.ts', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_b8a8b4d5.js', 'resources/js/admin/pages/settings/SubNavigation.vue', '_a0e8e535.js', '_bc417422.js', '_cd65597f.js', '_a91a466f.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7ce54f06.js', '_26634ccd.js', '_8f196142.js', '_40838281.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/settings/redirects/Form.vue'), 'resources/js/admin/pages/settings/redirects/Index.vue' => array('file' => 'static/js/ef2c1a7b.js', 'imports' => array('resources/js/admin/admin.ts', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_b8a8b4d5.js', 'resources/js/admin/pages/settings/SubNavigation.vue', '_a0e8e535.js', '_bc417422.js', '_cd65597f.js', '_f1a9e5fc.js', '_917be386.js', '_dfd2c82f.js', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7ce54f06.js', '_26634ccd.js', '_8f196142.js', '_40838281.js', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/settings/redirects/Index.vue'), 'resources/js/admin/pages/settings/redirects/Show.vue' => array('file' => 'static/js/3b577490.js', 'imports' => array('_a91a466f.js', '_a0e8e535.js', '_cd65597f.js', '_bc417422.js', '_d8e65df9.js', '_e9093abc.js', '_a0714199.js', '_b8a8b4d5.js', 'resources/js/admin/admin.ts', 'resources/js/admin/pages/settings/SubNavigation.vue', '_c27b6911.js', '_370b921a.js', '_5e30ba1d.js', '_eb1c8fef.js', '_45c7030d.js', '_7ce54f06.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_26634ccd.js', '_8f196142.js', '_40838281.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/settings/redirects/Show.vue'), 'resources/js/admin/pages/terminals/Form.vue' => array('file' => 'static/js/7ea9c367.js', 'imports' => array('resources/js/admin/admin.ts', '_a91a466f.js', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_b8a8b4d5.js', '_a0e8e535.js', '_bc417422.js', '_cd65597f.js', '_3f07ad90.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/terminals/Form.vue'), 'resources/js/admin/pages/terminals/Index.vue' => array('file' => 'static/js/b8e5c9d3.js', 'imports' => array('_370b921a.js', '_cc81708d.js', '_3845a5e6.js', '_b53a5748.js', '_c2287878.js', '_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js', '_fa6dbfd1.js', '_917be386.js', '_c27b6911.js', '_78996a45.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/terminals/Index.vue'), 'resources/js/admin/pages/terminals/Show.vue' => array('file' => 'static/js/d780e0f4.js', 'imports' => array('_370b921a.js', '_e962ceee.js', '_7522c097.js', '_e1870c3b.js', '_cc81708d.js', 'resources/js/admin/pages/terminals/components/navigation/TopNavigationCommon.vue', '_ceafcdf0.js', '_175bf124.js', '_ef6e1107.js', '_c27b6911.js', '_1335f829.js', '_a07ed2bc.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/terminals/Show.vue'), 'resources/js/admin/pages/terminals/components/navigation/TopNavigationCommon.vue' => array('file' => 'static/js/84679f07.js', 'imports' => array('_1335f829.js', '_370b921a.js', '_a07ed2bc.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/terminals/components/navigation/TopNavigationCommon.vue'), 'resources/js/admin/pages/terminals/components/navigation/TopNavigationIndex.vue' => array('file' => 'static/js/f02ef303.js', 'imports' => array('_310db65c.js', '_a07ed2bc.js', '_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/terminals/components/navigation/TopNavigationIndex.vue'), 'resources/js/admin/pages/tickets/Index.vue' => array('file' => 'static/js/1eada728.js', 'imports' => array('_a3a50fa5.js', '_fa6dbfd1.js', '_551c3b66.js', '_a0e8e535.js', '_f1a9e5fc.js', '_cd65597f.js', '_c2287878.js', '_917be386.js', '_26634ccd.js', 'resources/js/admin/admin.ts', '_c27b6911.js', '_370b921a.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/tickets/Index.vue'), 'resources/js/admin/pages/users/Index.vue' => array('file' => 'static/js/9e789121.js', 'imports' => array('_a0e2ed60.js', '_fa6dbfd1.js', '_370b921a.js', '_7af098c5.js', '_c27b6911.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/users/Index.vue'), 'resources/js/admin/pages/users/Show.vue' => array('file' => 'static/js/e144ab9e.js', 'imports' => array('_370b921a.js', '_a91a466f.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/users/Show.vue'), 'resources/js/admin/pages/users/orders/Index.vue' => array('file' => 'static/js/9c9c23a6.js', 'imports' => array('_af3926ae.js', '_370b921a.js', '_7d1fe70e.js', '_917be386.js', '_78996a45.js', '_c27b6911.js', '_7af098c5.js', '_43973dbc.js', '_512f03aa.js', '_5f4b8e41.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/users/orders/Index.vue'), 'resources/js/admin/pages/vendibles/Form.vue' => array('file' => 'static/js/2f4d2c19.js', 'imports' => array('resources/js/admin/admin.ts', '_d8e65df9.js', '_a0714199.js', '_e9093abc.js', '_b8a8b4d5.js', 'resources/js/admin/pages/vendibles/SubNavigation.vue', '_a0e8e535.js', '_bc417422.js', '_cd65597f.js', '_3f07ad90.js', '_00bb14ca.js', '_a91a466f.js', '_370b921a.js', '_c27b6911.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_45c7030d.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7ce54f06.js', '_26634ccd.js', '_8f196142.js', '_7327658c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/vendibles/Form.vue'), 'resources/js/admin/pages/vendibles/Index.vue' => array('file' => 'static/js/89d3dd42.js', 'imports' => array('resources/js/admin/admin.ts', '_a3a50fa5.js', '_dfd2c82f.js', '_551c3b66.js', '_917be386.js', '_bc417422.js', '_a0e8e535.js', '_f1a9e5fc.js', '_cd65597f.js', '_fa6dbfd1.js', 'resources/js/admin/pages/vendibles/SubNavigation.vue', '_c2287878.js', '_c27b6911.js', '_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_67cb1df3.js', '_3e249caf.js', '_0b96ffcf.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js', '_78996a45.js', '_26634ccd.js', '_8f196142.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/vendibles/Index.vue'), 'resources/js/admin/pages/vendibles/SubNavigation.vue' => array('file' => 'static/js/c7e01167.js', 'imports' => array('_26634ccd.js', '_8f196142.js', '_c27b6911.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/admin/pages/vendibles/SubNavigation.vue'), 'resources/js/restaurant/modals/auth/ForgetPassword.vue' => array('file' => 'static/js/8072f0d4.js', 'imports' => array('_370b921a.js', '_6f2c2676.js', '_94b882d7.js', '_ccc7643e.js', '_c27b6911.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/modals/auth/ForgetPassword.vue'), 'resources/js/restaurant/modals/auth/Profile.vue' => array('file' => 'static/js/39fd533b.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_6f2c2676.js', '_ccc7643e.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/modals/auth/Profile.vue'), 'resources/js/restaurant/modals/auth/ResetPassword.vue' => array('file' => 'static/js/4f4a38cc.js', 'imports' => array('_370b921a.js', '_6f2c2676.js', '_94b882d7.js', '_ccc7643e.js', '_c27b6911.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/modals/auth/ResetPassword.vue'), 'resources/js/restaurant/modals/dishes/Form.vue' => array('file' => 'static/js/af73f163.js', 'imports' => array('_370b921a.js', '_45c7030d.js', '_16c9a34c.js', '_ccc7643e.js', '_96873278.js', '_6f2c2676.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7ce54f06.js', '_7327658c.js', '_d1e40df9.js', '_59630b24.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/modals/dishes/Form.vue'), 'resources/js/restaurant/modals/orders/Details.vue' => array('file' => 'static/js/a5956a67.js', 'imports' => array('_370b921a.js', '_16c9a34c.js', '_5e30ba1d.js', '_eb1c8fef.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/modals/orders/Details.vue'), 'resources/js/restaurant/modals/restaurants/Select.vue' => array('file' => 'static/js/d2a9bada.js', 'imports' => array('_370b921a.js', '_6f2c2676.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/modals/restaurants/Select.vue'), 'resources/js/restaurant/pages/auth/Login.vue' => array('css' => array('static/css/f9a9f07c.css'), 'file' => 'static/js/cfe940a9.js', 'imports' => array('_370b921a.js', '_45c7030d.js', '_16c9a34c.js', '_ccc7643e.js', '_96873278.js', '_669aafff.js', '_5e30ba1d.js', '_eb1c8fef.js', '_7ce54f06.js', '_7327658c.js', '_d1e40df9.js', '_59630b24.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/pages/auth/Login.vue'), 'resources/js/restaurant/pages/dishes/Index.vue' => array('file' => 'static/js/2afb9d4c.js', 'imports' => array('resources/js/restaurant/pages/dishes/components/SubNavigation.vue', '_7af098c5.js', '_dea06df1.js', '_43973dbc.js', '_5f4b8e41.js', '_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/pages/dishes/Index.vue'), 'resources/js/restaurant/pages/dishes/components/SubNavigation.vue' => array('file' => 'static/js/f9ea9ad5.js', 'imports' => array('_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/pages/dishes/components/SubNavigation.vue'), 'resources/js/restaurant/pages/orders/Index.vue' => array('file' => 'static/js/a0b899f1.js', 'imports' => array('_370b921a.js', '_ccc7643e.js', '_78996a45.js', '_c27b6911.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/pages/orders/Index.vue'), 'resources/js/restaurant/pages/restaurants/Index.vue' => array('css' => array('static/css/f9a9f07c.css'), 'file' => 'static/js/87f6922c.js', 'imports' => array('_370b921a.js', '_669aafff.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/pages/restaurants/Index.vue'), 'resources/js/restaurant/pages/restaurants/Show.css' => array('file' => 'static/css/9b8d49e8.css', 'src' => 'resources/js/restaurant/pages/restaurants/Show.css'), 'resources/js/restaurant/pages/restaurants/Show.vue' => array('css' => array('static/css/9b8d49e8.css'), 'file' => 'static/js/421dd280.js', 'imports' => array('_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/restaurant/pages/restaurants/Show.vue'), 'resources/js/restaurant/restaurant.css' => array('file' => 'static/css/56940361.css', 'src' => 'resources/js/restaurant/restaurant.css'), 'resources/js/restaurant/restaurant.ts' => array('assets' => array('static/woff2/74833209.woff2', 'static/ttf/20c4a58b.ttf', 'static/woff2/8e7e5ea1.woff2', 'static/ttf/528d022d.ttf', 'static/woff2/7152a693.woff2', 'static/ttf/67a65763.ttf', 'static/woff2/694a17c3.woff2', 'static/ttf/0515a423.ttf'), 'css' => array('static/css/56940361.css'), 'dynamicImports' => array('resources/js/restaurant/modals/auth/ForgetPassword.vue', 'resources/js/restaurant/modals/auth/Profile.vue', 'resources/js/restaurant/modals/auth/ResetPassword.vue', 'resources/js/restaurant/modals/dishes/Form.vue', 'resources/js/restaurant/modals/orders/Details.vue', 'resources/js/restaurant/modals/restaurants/Select.vue', 'resources/js/restaurant/pages/auth/Login.vue', 'resources/js/restaurant/pages/dishes/Index.vue', 'resources/js/restaurant/pages/dishes/components/SubNavigation.vue', 'resources/js/restaurant/pages/orders/Index.vue', 'resources/js/restaurant/pages/restaurants/Index.vue', 'resources/js/restaurant/pages/restaurants/Show.vue'), 'file' => 'static/js/641f7b06.js', 'imports' => array('_370b921a.js', '_a0fb899e.js', '_ade20a39.js', '_e1c14a4b.js'), 'isEntry' => true, 'src' => 'resources/js/restaurant/restaurant.ts'), 'resources/js/web/modals/Modal.vue' => array('file' => 'static/js/4e4cb128.js', 'imports' => array('_2136f1fd.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/modals/Modal.vue'), 'resources/js/web/modals/auth/Address.vue' => array('file' => 'static/js/84073f15.js', 'imports' => array('_370b921a.js', '_ceafcdf0.js', '_b8693801.js', '_2136f1fd.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/modals/auth/Address.vue'), 'resources/js/web/modals/auth/Login.vue' => array('file' => 'static/js/6d0bf822.js', 'imports' => array('_370b921a.js', '_b8693801.js', '_2136f1fd.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/modals/auth/Login.vue'), 'resources/js/web/modals/auth/Register.vue' => array('file' => 'static/js/36107671.js', 'imports' => array('_370b921a.js', '_b9da320d.js', '_b8693801.js', '_510c47db.js', '_2136f1fd.js', '_59630b24.js', '_eb1c8fef.js', '_45c7030d.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/modals/auth/Register.vue'), 'resources/js/web/modals/auth/ResetPassword.vue' => array('file' => 'static/js/eab78079.js', 'imports' => array('_370b921a.js', '_b8693801.js', '_2136f1fd.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/modals/auth/ResetPassword.vue'), 'resources/js/web/modals/auth/ResetPasswordRequest.vue' => array('file' => 'static/js/0b4ec7c4.js', 'imports' => array('_370b921a.js', '_b8693801.js', '_2136f1fd.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/modals/auth/ResetPasswordRequest.vue'), 'resources/js/web/modals/checkout/AddressSelector.vue' => array('file' => 'static/js/4d37d091.js', 'imports' => array('_370b921a.js', '_2136f1fd.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/modals/checkout/AddressSelector.vue'), 'resources/js/web/modals/region/Select.vue' => array('file' => 'static/js/9de6a850.js', 'imports' => array('_370b921a.js', '_2136f1fd.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/modals/region/Select.vue'), 'resources/js/web/modals/restaurant/Cart.vue' => array('file' => 'static/js/6b752ff7.js', 'imports' => array('_c7d1195b.js', '_2136f1fd.js', '_370b921a.js', '_d2e22a47.js', '_b9da320d.js', '_59630b24.js', '_eb1c8fef.js', '_b8693801.js', '_45c7030d.js', '_510c47db.js', '_7ce54f06.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/modals/restaurant/Cart.vue'), 'resources/js/web/modals/restaurant/Reviews.vue' => array('file' => 'static/js/d5b40c34.js', 'imports' => array('_370b921a.js', '_dfd2c82f.js', '_6c37bc82.js', '_2136f1fd.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/modals/restaurant/Reviews.vue'), 'resources/js/web/modals/restaurant/Toppings.vue' => array('file' => 'static/js/48a33a97.js', 'imports' => array('_370b921a.js', '_b9da320d.js', '_2136f1fd.js', '_e2e9dbc8.js', '_59630b24.js', '_eb1c8fef.js', '_8603340c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/modals/restaurant/Toppings.vue'), 'resources/js/web/pages/Checkout.vue' => array('file' => 'static/js/401616a6.js', 'imports' => array('_370b921a.js', '_59630b24.js', '_b8693801.js', '_510c47db.js', '_00bb14ca.js', '_c27b6911.js', '_c7d1195b.js', '_c7c99aae.js', '_eb1c8fef.js', '_45c7030d.js', '_7ce54f06.js', '_7327658c.js', '_d2e22a47.js', '_b9da320d.js', '_745abfaf.js', '_8603340c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/Checkout.vue'), 'resources/js/web/pages/City.vue' => array('file' => 'static/js/a852b128.js', 'imports' => array('_370b921a.js', '_8a16e719.js', '_ceafcdf0.js', '_6c37bc82.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/City.vue'), 'resources/js/web/pages/Faq.vue' => array('file' => 'static/js/b7c44048.js', 'imports' => array('_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/Faq.vue'), 'resources/js/web/pages/Home.vue' => array('assets' => array('static/svg/b70b320c.svg', 'static/svg/f7283c8e.svg', 'static/svg/b25eb40e.svg', 'static/svg/5f4428c9.svg'), 'file' => 'static/js/84fac7e7.js', 'imports' => array('_370b921a.js', '_210af661.js', 'resources/js/web/web.ts', '_0b96ffcf.js', '_ade20a39.js', '_67cb1df3.js', '_e1c14a4b.js', '_8603340c.js', '_745abfaf.js', '_5cbb209f.js', '_e2e9dbc8.js', '_c7c99aae.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/Home.vue'), 'resources/js/web/pages/Kitchen.vue' => array('file' => 'static/js/7f8eeecf.js', 'imports' => array('_370b921a.js', 'resources/js/web/web.ts', '_c27b6911.js', '_ade20a39.js', '_67cb1df3.js', '_e1c14a4b.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/Kitchen.vue'), 'resources/js/web/pages/News.vue' => array('file' => 'static/js/01d9c7cc.js', 'imports' => array('_370b921a.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/News.vue'), 'resources/js/web/pages/NewsItem.vue' => array('file' => 'static/js/5391308c.js', 'imports' => array('_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/NewsItem.vue'), 'resources/js/web/pages/OrderStatus.vue' => array('file' => 'static/js/d0ff220a.js', 'imports' => array('_370b921a.js', '_06c5a69d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/OrderStatus.vue'), 'resources/js/web/pages/OrderStatus2.vue' => array('file' => 'static/js/546d4143.js', 'imports' => array('_370b921a.js', '_353982b4.js', '_06c5a69d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/OrderStatus2.vue'), 'resources/js/web/pages/OrderStatusNew.vue' => array('file' => 'static/js/40e9436e.js', 'imports' => array('_370b921a.js', '_353982b4.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/OrderStatusNew.vue'), 'resources/js/web/pages/Region.css' => array('file' => 'static/css/56509995.css', 'src' => 'resources/js/web/pages/Region.css'), 'resources/js/web/pages/Region.vue' => array('css' => array('static/css/56509995.css'), 'file' => 'static/js/3f663f44.js', 'imports' => array('_370b921a.js', '_d2e22a47.js', '_8a16e719.js', '_c27b6911.js', '_5cbb209f.js', '_ceafcdf0.js', '_6c37bc82.js', '_8603340c.js', '_745abfaf.js', '_e2e9dbc8.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/Region.vue'), 'resources/js/web/pages/Restaurant.vue' => array('file' => 'static/js/3eb11cbf.js', 'imports' => array('_370b921a.js', '_c7d1195b.js', '_6c37bc82.js', '_d2e22a47.js', '_b9da320d.js', '_59630b24.js', '_eb1c8fef.js', '_b8693801.js', '_45c7030d.js', '_510c47db.js', '_7ce54f06.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/Restaurant.vue'), 'resources/js/web/pages/auth/Addresses.vue' => array('file' => 'static/js/3a214ced.js', 'imports' => array('_ceafcdf0.js', '_370b921a.js', '_e48cd260.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/auth/Addresses.vue'), 'resources/js/web/pages/auth/Favorites.vue' => array('file' => 'static/js/98dddc2c.js', 'imports' => array('_370b921a.js', '_e48cd260.js', '_6c37bc82.js', '_c27b6911.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/auth/Favorites.vue'), 'resources/js/web/pages/auth/Orders.vue' => array('file' => 'static/js/b0fe4bbf.js', 'imports' => array('_e48cd260.js', '_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/auth/Orders.vue'), 'resources/js/web/pages/auth/Profile.vue' => array('file' => 'static/js/ab8acc32.js', 'imports' => array('_370b921a.js', '_b9da320d.js', '_b8693801.js', '_e48cd260.js', '_59630b24.js', '_eb1c8fef.js', '_45c7030d.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/auth/Profile.vue'), 'resources/js/web/pages/templates/Default.vue' => array('file' => 'static/js/c19113f8.js', 'imports' => array('_370b921a.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/templates/Default.vue'), 'resources/js/web/pages/templates/RestaurantRegister.css' => array('file' => 'static/css/af3465cd.css', 'src' => 'resources/js/web/pages/templates/RestaurantRegister.css'), 'resources/js/web/pages/templates/RestaurantRegister.vue' => array('assets' => array('static/jpg/46a1d84b.jpg', 'static/jpg/194ef335.jpg'), 'css' => array('static/css/af3465cd.css'), 'file' => 'static/js/40383d03.js', 'imports' => array('_370b921a.js', '_8d5b8c8c.js', '_b8693801.js', '_210af661.js', '_e2e9dbc8.js', '_45c7030d.js', '_8603340c.js'), 'isDynamicEntry' => true, 'src' => 'resources/js/web/pages/templates/RestaurantRegister.vue'), 'resources/js/web/web.css' => array('file' => 'static/css/1b046ae6.css', 'src' => 'resources/js/web/web.css'), 'resources/js/web/web.ts' => array('assets' => array('static/webp/b37388e5.webp', 'static/svg/4719dd42.svg', 'static/woff2/8e7e5ea1.woff2', 'static/ttf/528d022d.ttf', 'static/woff2/7152a693.woff2', 'static/ttf/67a65763.ttf', 'static/woff2/74833209.woff2', 'static/ttf/20c4a58b.ttf', 'static/png/4d9d855e.png'), 'css' => array('static/css/1b046ae6.css'), 'dynamicImports' => array('resources/js/web/modals/Modal.vue', 'resources/js/web/modals/auth/Address.vue', 'resources/js/web/modals/auth/Login.vue', 'resources/js/web/modals/auth/Register.vue', 'resources/js/web/modals/auth/ResetPassword.vue', 'resources/js/web/modals/auth/ResetPasswordRequest.vue', 'resources/js/web/modals/checkout/AddressSelector.vue', 'resources/js/web/modals/region/Select.vue', 'resources/js/web/modals/restaurant/Cart.vue', 'resources/js/web/modals/restaurant/Reviews.vue', 'resources/js/web/modals/restaurant/Toppings.vue', 'resources/js/web/pages/Checkout.vue', 'resources/js/web/pages/City.vue', 'resources/js/web/pages/Faq.vue', 'resources/js/web/pages/Home.vue', 'resources/js/web/pages/Kitchen.vue', 'resources/js/web/pages/News.vue', 'resources/js/web/pages/NewsItem.vue', 'resources/js/web/pages/OrderStatus.vue', 'resources/js/web/pages/OrderStatus2.vue', 'resources/js/web/pages/OrderStatusNew.vue', 'resources/js/web/pages/Region.vue', 'resources/js/web/pages/Restaurant.vue', 'resources/js/web/pages/auth/Addresses.vue', 'resources/js/web/pages/auth/Favorites.vue', 'resources/js/web/pages/auth/Orders.vue', 'resources/js/web/pages/auth/Profile.vue', 'resources/js/web/pages/templates/Default.vue', 'resources/js/web/pages/templates/RestaurantRegister.vue'), 'file' => 'static/js/403133f9.js', 'imports' => array('_370b921a.js', '_ade20a39.js', '_67cb1df3.js', '_e1c14a4b.js'), 'isEntry' => true, 'src' => 'resources/js/web/web.ts'), 'resources/lang/php_de.json' => array('file' => 'static/js/162266b3.js', 'isDynamicEntry' => true, 'src' => 'resources/lang/php_de.json'), 'resources/lang/php_en.json' => array('file' => 'static/js/eb89d71a.js', 'isDynamicEntry' => true, 'src' => 'resources/lang/php_en.json'), 'resources/lang/php_nl.json' => array('file' => 'static/js/dc108329.js', 'isDynamicEntry' => true, 'src' => 'resources/lang/php_nl.json'), 'resources/lang/php_vendor.json' => array('file' => 'static/js/3f7340b3.js', 'isDynamicEntry' => true, 'src' => 'resources/lang/php_vendor.json'), 'resources/sounds/new-order-notification.mp3' => array('file' => 'static/mp3/2dff1d0b.mp3', 'src' => 'resources/sounds/new-order-notification.mp3'), 'tippy.css' => array('file' => 'static/css/a1ae07b3.css', 'src' => 'tippy.css')), 'resources/css/web/web.css')
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Vite.php:279)
  at Illuminate\Foundation\Vite->__invoke(object(Collection))
     (/tmp/storage/framework/views/a63cb094a2deaaa126d789d7a8741276.php:55)
  at require('/tmp/storage/framework/views/a63cb094a2deaaa126d789d7a8741276.php')
     (/var/task/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/task/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:125)
  at Illuminate\Filesystem\Filesystem->getRequire('/tmp/storage/framework/views/a63cb094a2deaaa126d789d7a8741276.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/tmp/storage/framework/views/a63cb094a2deaaa126d789d7a8741276.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/var/task/resources/views/web/layouts/error.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/inspector-apm/inspector-laravel/src/Views/ViewEngineDecorator.php:38)
  at Inspector\Laravel\Views\ViewEngineDecorator->get('/var/task/resources/views/web/layouts/error.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Tracing/ViewEngineDecorator.php:45)
  at Sentry\Laravel\Tracing\ViewEngineDecorator->get('/var/task/resources/views/web/layouts/error.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:195)
  at Illuminate\View\View->getContents()
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:178)
  at Illuminate\View\View->renderContents()
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:147)
  at Illuminate\View\View->render()
     (/tmp/storage/framework/views/133c32efde8a094c97253b999c4bbf99.php:12)
  at require('/tmp/storage/framework/views/133c32efde8a094c97253b999c4bbf99.php')
     (/var/task/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/var/task/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:125)
  at Illuminate\Filesystem\Filesystem->getRequire('/tmp/storage/framework/views/133c32efde8a094c97253b999c4bbf99.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/tmp/storage/framework/views/133c32efde8a094c97253b999c4bbf99.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/var/task/resources/views/errors/404.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/inspector-apm/inspector-laravel/src/Views/ViewEngineDecorator.php:38)
  at Inspector\Laravel\Views\ViewEngineDecorator->get('/var/task/resources/views/errors/404.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Tracing/ViewEngineDecorator.php:45)
  at Sentry\Laravel\Tracing\ViewEngineDecorator->get('/var/task/resources/views/errors/404.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag), '__sentry_tracing_view_name' => 'errors::404', 'exception' => object(NotFoundHttpException)))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:195)
  at Illuminate\View\View->getContents()
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:178)
  at Illuminate\View\View->renderContents()
     (/var/task/vendor/laravel/framework/src/Illuminate/View/View.php:147)
  at Illuminate\View\View->render()
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent(object(View))
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct(object(View), 404, array())
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/ResponseFactory.php:57)
  at Illuminate\Routing\ResponseFactory->make(object(View), 404, array())
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/ResponseFactory.php:87)
  at Illuminate\Routing\ResponseFactory->view('errors::404', array('errors' => object(ViewErrorBag), 'exception' => object(NotFoundHttpException)), 404, array())
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:643)
  at Illuminate\Foundation\Exceptions\Handler->renderHttpException(object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:571)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:477)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse(object(Request), object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:394)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(NotFoundHttpException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(ModelNotFoundException))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:185)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/app/Http/Middleware/GzipEncodeResponse.php:12)
  at App\Http\Middleware\GzipEncodeResponse->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php:41)
  at Illuminate\Session\Middleware\AuthenticateSession->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/spatie/laravel-referer/src/CaptureReferer.php:21)
  at Spatie\Referer\CaptureReferer->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(EncryptedStore), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:797)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Http/SetRequestIpMiddleware.php:45)
  at Sentry\Laravel\Http\SetRequestIpMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Http/SetRequestMiddleware.php:30)
  at Sentry\Laravel\Http\SetRequestMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Http/Middleware/ServeStaticAssets.php:21)
  at Laravel\Vapor\Http\Middleware\ServeStaticAssets->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/spatie/laravel-robots-middleware/src/RobotsMiddleware.php:14)
  at Spatie\RobotsMiddleware\RobotsMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/app/Http/Middleware/HttpsProtocolMiddleware.php:19)
  at App\Http\Middleware\HttpsProtocolMiddleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustHosts.php:48)
  at Illuminate\Http\Middleware\TrustHosts->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/sentry/sentry-laravel/src/Sentry/Laravel/Tracing/Middleware.php:52)
  at Sentry\Laravel\Tracing\Middleware->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/task/vendor/laravel/octane/src/ApplicationGateway.php:37)
  at Laravel\Octane\ApplicationGateway->handle(object(Request))
     (/var/task/vendor/laravel/octane/src/Worker.php:92)
  at Laravel\Octane\Worker->handle(object(Request), object(RequestContext))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Octane/Octane.php:194)
  at Laravel\Vapor\Runtime\Octane\Octane::Laravel\Vapor\Runtime\Octane\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/EnsureBinaryEncoding.php:19)
  at Laravel\Vapor\Runtime\Http\Middleware\EnsureBinaryEncoding->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/EnsureVanityUrlIsNotIndexed.php:16)
  at Laravel\Vapor\Runtime\Http\Middleware\EnsureVanityUrlIsNotIndexed->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/RedirectStaticAssets.php:30)
  at Laravel\Vapor\Runtime\Http\Middleware\RedirectStaticAssets->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Http/Middleware/EnsureOnNakedDomain.php:46)
  at Laravel\Vapor\Runtime\Http\Middleware\EnsureOnNakedDomain->handle(object(Request), object(Closure))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/task/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Octane/Octane.php:193)
  at Laravel\Vapor\Runtime\Octane\Octane::sendRequest(object(Request), object(RequestContext))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Octane/Octane.php:162)
  at Laravel\Vapor\Runtime\Octane\Octane::handle(object(Request))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/Handlers/OctaneHandler.php:26)
  at Laravel\Vapor\Runtime\Handlers\OctaneHandler->handle(array('version' => '1.0', 'resource' => '$default', 'path' => '/affiliate-worden', 'httpMethod' => 'GET', 'headers' => array('Content-Length' => '0', 'Host' => 'emeals.work', 'User-Agent' => 'claudebot', 'X-Amzn-Trace-Id' => 'Root=1-6605c0c9-6414e3cb0f00544257071be6', 'X-Forwarded-For' => '18.209.209.28, 172.70.174.204', 'X-Forwarded-Port' => '443', 'X-Forwarded-Proto' => 'https', 'accept' => '*/*', 'accept-encoding' => 'gzip, br', 'cdn-loop' => 'cloudflare', 'cf-connecting-ip' => '18.209.209.28', 'cf-ipcountry' => 'US', 'cf-ray' => '86b9ec8a3aa382d5-IAD', 'cf-visitor' => '{"scheme":"https"}'), 'multiValueHeaders' => array('Content-Length' => array('0'), 'Host' => array('emeals.work'), 'User-Agent' => array('claudebot'), 'X-Amzn-Trace-Id' => array('Root=1-6605c0c9-6414e3cb0f00544257071be6'), 'X-Forwarded-For' => array('18.209.209.28, 172.70.174.204'), 'X-Forwarded-Port' => array('443'), 'X-Forwarded-Proto' => array('https'), 'accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'cdn-loop' => array('cloudflare'), 'cf-connecting-ip' => array('18.209.209.28'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b9ec8a3aa382d5-IAD'), 'cf-visitor' => array('{"scheme":"https"}')), 'queryStringParameters' => null, 'multiValueQueryStringParameters' => null, 'requestContext' => array('accountId' => '320299171002', 'apiId' => '58o7hik737', 'domainName' => 'emeals.work', 'domainPrefix' => 'emeals', 'extendedRequestId' => 'VWsPigYGliAEMrA=', 'httpMethod' => 'GET', 'identity' => array('accessKey' => null, 'accountId' => null, 'caller' => null, 'cognitoAmr' => null, 'cognitoAuthenticationProvider' => null, 'cognitoAuthenticationType' => null, 'cognitoIdentityId' => null, 'cognitoIdentityPoolId' => null, 'principalOrgId' => null, 'sourceIp' => '172.70.174.204', 'user' => null, 'userAgent' => 'claudebot', 'userArn' => null), 'path' => '/staging/affiliate-worden', 'protocol' => 'HTTP/1.1', 'requestId' => 'VWsPigYGliAEMrA=', 'requestTime' => '28/Mar/2024:19:11:05 +0000', 'requestTimeEpoch' => 1711653065556, 'resourceId' => '$default', 'resourcePath' => '$default', 'stage' => 'staging'), 'pathParameters' => null, 'stageVariables' => null, 'body' => null, 'isBase64Encoded' => false))
     (/var/task/octaneRuntime.php:101)
  at {closure}('a328dd74-0f2c-4e5a-b10d-d0793e0c3d1d', array('version' => '1.0', 'resource' => '$default', 'path' => '/affiliate-worden', 'httpMethod' => 'GET', 'headers' => array('Content-Length' => '0', 'Host' => 'emeals.work', 'User-Agent' => 'claudebot', 'X-Amzn-Trace-Id' => 'Root=1-6605c0c9-6414e3cb0f00544257071be6', 'X-Forwarded-For' => '18.209.209.28, 172.70.174.204', 'X-Forwarded-Port' => '443', 'X-Forwarded-Proto' => 'https', 'accept' => '*/*', 'accept-encoding' => 'gzip, br', 'cdn-loop' => 'cloudflare', 'cf-connecting-ip' => '18.209.209.28', 'cf-ipcountry' => 'US', 'cf-ray' => '86b9ec8a3aa382d5-IAD', 'cf-visitor' => '{"scheme":"https"}'), 'multiValueHeaders' => array('Content-Length' => array('0'), 'Host' => array('emeals.work'), 'User-Agent' => array('claudebot'), 'X-Amzn-Trace-Id' => array('Root=1-6605c0c9-6414e3cb0f00544257071be6'), 'X-Forwarded-For' => array('18.209.209.28, 172.70.174.204'), 'X-Forwarded-Port' => array('443'), 'X-Forwarded-Proto' => array('https'), 'accept' => array('*/*'), 'accept-encoding' => array('gzip, br'), 'cdn-loop' => array('cloudflare'), 'cf-connecting-ip' => array('18.209.209.28'), 'cf-ipcountry' => array('US'), 'cf-ray' => array('86b9ec8a3aa382d5-IAD'), 'cf-visitor' => array('{"scheme":"https"}')), 'queryStringParameters' => null, 'multiValueQueryStringParameters' => null, 'requestContext' => array('accountId' => '320299171002', 'apiId' => '58o7hik737', 'domainName' => 'emeals.work', 'domainPrefix' => 'emeals', 'extendedRequestId' => 'VWsPigYGliAEMrA=', 'httpMethod' => 'GET', 'identity' => array('accessKey' => null, 'accountId' => null, 'caller' => null, 'cognitoAmr' => null, 'cognitoAuthenticationProvider' => null, 'cognitoAuthenticationType' => null, 'cognitoIdentityId' => null, 'cognitoIdentityPoolId' => null, 'principalOrgId' => null, 'sourceIp' => '172.70.174.204', 'user' => null, 'userAgent' => 'claudebot', 'userArn' => null), 'path' => '/staging/affiliate-worden', 'protocol' => 'HTTP/1.1', 'requestId' => 'VWsPigYGliAEMrA=', 'requestTime' => '28/Mar/2024:19:11:05 +0000', 'requestTimeEpoch' => 1711653065556, 'resourceId' => '$default', 'resourcePath' => '$default', 'stage' => 'staging'), 'pathParameters' => null, 'stageVariables' => null, 'body' => null, 'isBase64Encoded' => false))
     (/var/task/vendor/laravel/vapor-core/src/Runtime/LambdaRuntime.php:53)
  at Laravel\Vapor\Runtime\LambdaRuntime->nextInvocation(object(Closure))
     (/var/task/octaneRuntime.php:99)
  at require('/var/task/octaneRuntime.php')
     (/var/task/runtime.php:33)
  at require('/var/task/runtime.php')
     (/opt/bootstrap.php:6)