LURCH5
  GET|HEAD       / .... generated::tc4oup3h3mr2KRDK › DefaultController@output
  GET|HEAD       lbsat/borrower/{address_id_nr} generated::TiNVWjXnMNeDr8qE  …
  GET|HEAD       lbsat/lurch/redo generated::ZDtO2lL5bEhwJ6g0 › LurchControll…
  GET|HEAD       lbsat/lurch/{file} generated::YwL64JKuilD8lI6n › LurchContro…
  ANY            {all} ........................... generated::OhDoWED7uPxzjx3t

                                                            Showing [5] routes

Target class [web] does not exist. (500 Internal Server Error)

Symfony Exception

ReflectionException BindingResolutionException

HTTP 500 Internal Server Error

Target class [web] does not exist.

Exceptions 2

Illuminate\Contracts\Container\ BindingResolutionException

  1.         }
  2.         try {
  3.             $reflector = new ReflectionClass($concrete);
  4.         } catch (ReflectionException $e) {
  5.             throw new BindingResolutionException("Target class [$concrete] does not exist."0$e);
  6.         }
  7.         // If the type is not instantiable, the developer is attempting to resolve
  8.         // an abstract type such as an Interface or Abstract Class and there is
  9.         // no binding registered for the abstractions so we need to bail out.
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.                 continue;
  2.             }
  3.             [$name] = $this->parseMiddleware($middleware);
  4.             $instance $this->app->make($name);
  5.             if (method_exists($instance'terminate')) {
  6.                 $instance->terminate($request$response);
  7.             }
  8.         }
  1.      * @param  \Illuminate\Http\Response  $response
  2.      * @return void
  3.      */
  4.     public function terminate($request$response)
  5.     {
  6.         $this->terminateMiddleware($request$response);
  7.         $this->app->terminate();
  8.         foreach ($this->requestLifecycleDurationHandlers as ['threshold' => $threshold'handler' => $handler]) {
  9.             $end ??= Carbon::now();
Kernel->terminate(object(Request), object(Response)) in /var/www/html/public/index.php (line 55)
  1. $response $kernel->handle(
  2.     $request Request::capture()
  3. )->send();
  4. $kernel->terminate($request$response);

ReflectionException

Class "web" does not exist

  1.         if ($concrete instanceof Closure) {
  2.             return $concrete($this$this->getLastParameterOverride());
  3.         }
  4.         try {
  5.             $reflector = new ReflectionClass($concrete);
  6.         } catch (ReflectionException $e) {
  7.             throw new BindingResolutionException("Target class [$concrete] does not exist."0$e);
  8.         }
  9.         // If the type is not instantiable, the developer is attempting to resolve
  1.         if ($concrete instanceof Closure) {
  2.             return $concrete($this$this->getLastParameterOverride());
  3.         }
  4.         try {
  5.             $reflector = new ReflectionClass($concrete);
  6.         } catch (ReflectionException $e) {
  7.             throw new BindingResolutionException("Target class [$concrete] does not exist."0$e);
  8.         }
  9.         // If the type is not instantiable, the developer is attempting to resolve
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.                 continue;
  2.             }
  3.             [$name] = $this->parseMiddleware($middleware);
  4.             $instance $this->app->make($name);
  5.             if (method_exists($instance'terminate')) {
  6.                 $instance->terminate($request$response);
  7.             }
  8.         }
  1.      * @param  \Illuminate\Http\Response  $response
  2.      * @return void
  3.      */
  4.     public function terminate($request$response)
  5.     {
  6.         $this->terminateMiddleware($request$response);
  7.         $this->app->terminate();
  8.         foreach ($this->requestLifecycleDurationHandlers as ['threshold' => $threshold'handler' => $handler]) {
  9.             $end ??= Carbon::now();
Kernel->terminate(object(Request), object(Response)) in /var/www/html/public/index.php (line 55)
  1. $response $kernel->handle(
  2.     $request Request::capture()
  3. )->send();
  4. $kernel->terminate($request$response);

Stack Traces 2

[2/2] BindingResolutionException
Illuminate\Contracts\Container\BindingResolutionException:
Target class [web] does not exist.

  at /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:877
  at Illuminate\Container\Container->build('web')
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:756)
  at Illuminate\Container\Container->resolve('web', array(), true)
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:860)
  at Illuminate\Foundation\Application->resolve('web', array())
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:692)
  at Illuminate\Container\Container->make('web', array())
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:845)
  at Illuminate\Foundation\Application->make('web')
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:239)
  at Illuminate\Foundation\Http\Kernel->terminateMiddleware(object(Request), object(Response))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:203)
  at Illuminate\Foundation\Http\Kernel->terminate(object(Request), object(Response))
     (/var/www/html/public/index.php:55)                
[1/2] ReflectionException
ReflectionException:
Class "web" does not exist

  at /var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:875
  at ReflectionClass->__construct('web')
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:875)
  at Illuminate\Container\Container->build('web')
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:756)
  at Illuminate\Container\Container->resolve('web', array(), true)
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:860)
  at Illuminate\Foundation\Application->resolve('web', array())
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:692)
  at Illuminate\Container\Container->make('web', array())
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:845)
  at Illuminate\Foundation\Application->make('web')
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:239)
  at Illuminate\Foundation\Http\Kernel->terminateMiddleware(object(Request), object(Response))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:203)
  at Illuminate\Foundation\Http\Kernel->terminate(object(Request), object(Response))
     (/var/www/html/public/index.php:55)