ErrorException (E_WARNING)
include(/home/venueevents/public_html/vendor/composer/../../app/Http/Middleware/TrimStrings.php): Failed to open stream: No such file or directory ErrorException thrown with message "include(/home/venueevents/public_html/vendor/composer/../../app/Http/Middleware/TrimStrings.php): Failed to open stream: No such file or directory" Stacktrace: #17 ErrorException in /home/venueevents/public_html/vendor/composer/ClassLoader.php:571 #16 include in /home/venueevents/public_html/vendor/composer/ClassLoader.php:571 #15 Composer\Autoload\includeFile in /home/venueevents/public_html/vendor/composer/ClassLoader.php:428 #14 Composer\Autoload\ClassLoader:loadClass in [internal]:0 #13 ReflectionClass:__construct in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:809 #12 Illuminate\Container\Container:build in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:691 #11 Illuminate\Container\Container:resolve in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:796 #10 Illuminate\Foundation\Application:resolve in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:637 #9 Illuminate\Container\Container:make in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:781 #8 Illuminate\Foundation\Application:make in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:156 #7 Illuminate\Pipeline\Pipeline:Illuminate\Pipeline\{closure} in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27 #6 Illuminate\Foundation\Http\Middleware\ValidatePostSize:handle in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167 #5 Illuminate\Pipeline\Pipeline:Illuminate\Pipeline\{closure} in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63 #4 Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode:handle in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167 #3 Illuminate\Pipeline\Pipeline:Illuminate\Pipeline\{closure} in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103 #2 Illuminate\Pipeline\Pipeline:then in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140 #1 Illuminate\Foundation\Http\Kernel:sendRequestThroughRouter in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109 #0 Illuminate\Foundation\Http\Kernel:handle in /home/venueevents/public_html/index.php:48
17
ErrorException
/vendor/composer/ClassLoader.php571
16
include
/vendor/composer/ClassLoader.php571
15
Composer\Autoload\includeFile
/vendor/composer/ClassLoader.php428
14
Composer\Autoload\ClassLoader loadClass
[internal]0
13
ReflectionClass __construct
/vendor/laravel/framework/src/Illuminate/Container/Container.php809
12
Illuminate\Container\Container build
/vendor/laravel/framework/src/Illuminate/Container/Container.php691
11
Illuminate\Container\Container resolve
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php796
10
Illuminate\Foundation\Application resolve
/vendor/laravel/framework/src/Illuminate/Container/Container.php637
9
Illuminate\Container\Container make
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php781
8
Illuminate\Foundation\Application make
/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php156
7
Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php27
6
Illuminate\Foundation\Http\Middleware\ValidatePostSize handle
/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php167
5
Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php63
4
Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode handle
/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php167
3
Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php103
2
Illuminate\Pipeline\Pipeline then
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php140
1
Illuminate\Foundation\Http\Kernel sendRequestThroughRouter
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php109
0
Illuminate\Foundation\Http\Kernel handle
/index.php48
/home/venueevents/public_html/vendor/composer/ClassLoader.php
        if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
            return $file;
        }

        return false;
    }
}

/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 *
 * @param  string $file
 * @return void
 * @private
 */
function includeFile($file)
{
    include $file;
}
 
Arguments
  1. "include(/home/venueevents/public_html/vendor/composer/../../app/Http/Middleware/TrimStrings.php): Failed to open stream: No such file or directory"
    
/home/venueevents/public_html/vendor/composer/ClassLoader.php
        if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
            return $file;
        }

        return false;
    }
}

/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 *
 * @param  string $file
 * @return void
 * @private
 */
function includeFile($file)
{
    include $file;
}
 
/home/venueevents/public_html/vendor/composer/ClassLoader.php
     */
    public function unregister()
    {
        spl_autoload_unregister(array($this, 'loadClass'));

        if (null !== $this->vendorDir) {
            unset(self::$registeredLoaders[$this->vendorDir]);
        }
    }

    /**
     * Loads the given class or interface.
     *
     * @param  string    $class The name of the class
     * @return true|null True if loaded, null otherwise
     */
    public function loadClass($class)
    {
        if ($file = $this->findFile($class)) {
            includeFile($file);

            return true;
        }

        return null;
    }

    /**
     * Finds the path to the file where the class is defined.
     *
     * @param string $class The name of the class
     *
     * @return string|false The path if found, false otherwise
     */
    public function findFile($class)
    {
        // class map lookup
        if (isset($this->classMap[$class])) {
            return $this->classMap[$class];
        }
Arguments
  1. "/home/venueevents/public_html/vendor/composer/../../app/Http/Middleware/TrimStrings.php"
    
[internal]
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php

    /**
     * Instantiate a concrete instance of the given type.
     *
     * @param  \Closure|string  $concrete
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function build($concrete)
    {
        // If the concrete type is actually a Closure, we will just execute it and
        // hand back the results of the functions, which allows functions to be
        // used as resolvers for more fine-tuned resolution of these objects.
        if ($concrete instanceof Closure) {
            return $concrete($this, $this->getLastParameterOverride());
        }

        try {
            $reflector = new ReflectionClass($concrete);
        } catch (ReflectionException $e) {
            throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
        }

        // If the type is not instantiable, the developer is attempting to resolve
        // an abstract type such as an Interface or Abstract Class and there is
        // no binding registered for the abstractions so we need to bail out.
        if (! $reflector->isInstantiable()) {
            return $this->notInstantiable($concrete);
        }

        $this->buildStack[] = $concrete;

        $constructor = $reflector->getConstructor();

        // If there are no constructors, that means there are no dependencies then
        // we can just resolve the instances of the objects right away, without
        // resolving any other types or dependencies out of these containers.
        if (is_null($constructor)) {
            array_pop($this->buildStack);
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php
        $needsContextualBuild = ! empty($parameters) || ! is_null($concrete);

        // If an instance of the type is currently being managed as a singleton we'll
        // just return an existing instance instead of instantiating new instances
        // so the developer can keep using the same objects instance every time.
        if (isset($this->instances[$abstract]) && ! $needsContextualBuild) {
            return $this->instances[$abstract];
        }

        $this->with[] = $parameters;

        if (is_null($concrete)) {
            $concrete = $this->getConcrete($abstract);
        }

        // We're ready to instantiate an instance of the concrete type registered for
        // the binding. This will instantiate the types, as well as resolve any of
        // its "nested" dependencies recursively until all have gotten resolved.
        if ($this->isBuildable($concrete, $abstract)) {
            $object = $this->build($concrete);
        } else {
            $object = $this->make($concrete);
        }

        // If we defined any extenders for this type, we'll need to spin through them
        // and apply them to the object being built. This allows for the extension
        // of services, such as changing configuration or decorating the object.
        foreach ($this->getExtenders($abstract) as $extender) {
            $object = $extender($object, $this);
        }

        // If the requested type is registered as a singleton we'll want to cache off
        // the instances in "memory" so we can return it later without creating an
        // entirely new instance of an object on each subsequent request for it.
        if ($this->isShared($abstract) && ! $needsContextualBuild) {
            $this->instances[$abstract] = $object;
        }

        if ($raiseEvents) {
            $this->fireResolvingCallbacks($abstract, $object);
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    public function make($abstract, array $parameters = [])
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));

        return parent::make($abstract, $parameters);
    }

    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @param  bool  $raiseEvents
     * @return mixed
     */
    protected function resolve($abstract, $parameters = [], $raiseEvents = true)
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));

        return parent::resolve($abstract, $parameters, $raiseEvents);
    }

    /**
     * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
     *
     * @param  string  $abstract
     * @return void
     */
    protected function loadDeferredProviderIfNeeded($abstract)
    {
        if ($this->isDeferredService($abstract) && ! isset($this->instances[$abstract])) {
            $this->loadDeferredProvider($abstract);
        }
    }

    /**
     * Determine if the given abstract type has been bound.
     *
     * @param  string  $abstract
     * @return bool
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
  2. []
    
  3. true
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function makeWith($abstract, array $parameters = [])
    {
        return $this->make($abstract, $parameters);
    }

    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function make($abstract, array $parameters = [])
    {
        return $this->resolve($abstract, $parameters);
    }

    /**
     *  {@inheritdoc}
     */
    public function get($id)
    {
        try {
            return $this->resolve($id);
        } catch (Exception $e) {
            if ($this->has($id)) {
                throw $e;
            }

            throw new EntryNotFoundException($id, $e->getCode(), $e);
        }
    }

    /**
     * Resolve the given type from the container.
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
  2. []
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php

        if (! $this->isBooted()) {
            $this->booting(function () use ($instance) {
                $this->bootProvider($instance);
            });
        }
    }

    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @return mixed
     */
    public function make($abstract, array $parameters = [])
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));

        return parent::make($abstract, $parameters);
    }

    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @param  bool  $raiseEvents
     * @return mixed
     */
    protected function resolve($abstract, $parameters = [], $raiseEvents = true)
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));

        return parent::resolve($abstract, $parameters, $raiseEvents);
    }

    /**
     * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
     *
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
  2. []
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
     *
     * @return \Closure
     */
    protected function carry()
    {
        return function ($stack, $pipe) {
            return function ($passable) use ($stack, $pipe) {
                try {
                    if (is_callable($pipe)) {
                        // If the pipe is a callable, then we will call it directly, but otherwise we
                        // will resolve the pipes out of the dependency container and call it with
                        // the appropriate method and arguments, returning the results back out.
                        return $pipe($passable, $stack);
                    } elseif (! is_object($pipe)) {
                        [$name, $parameters] = $this->parsePipeString($pipe);

                        // If the pipe is a string we will parse the string and resolve the class out
                        // of the dependency injection container. We can then build a callable and
                        // execute the pipe function giving in the parameters that are required.
                        $pipe = $this->getContainer()->make($name);

                        $parameters = array_merge([$passable, $stack], $parameters);
                    } else {
                        // If the pipe is already an object we'll just make a callable and pass it to
                        // the pipe as-is. There is no need to do any extra parsing and formatting
                        // since the object we're given was already a fully instantiated object.
                        $parameters = [$passable, $stack];
                    }

                    $carry = method_exists($pipe, $this->method)
                                    ? $pipe->{$this->method}(...$parameters)
                                    : $pipe(...$parameters);

                    return $this->handleCarry($carry);
                } catch (Throwable $e) {
                    return $this->handleException($passable, $e);
                }
            };
        };
    }
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php
class ValidatePostSize
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     *
     * @throws \Illuminate\Http\Exceptions\PostTooLargeException
     */
    public function handle($request, Closure $next)
    {
        $max = $this->getPostMaxSize();

        if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
            throw new PostTooLargeException;
        }

        return $next($request);
    }

    /**
     * Determine the server 'post_max_size' as bytes.
     *
     * @return int
     */
    protected function getPostMaxSize()
    {
        if (is_numeric($postMaxSize = ini_get('post_max_size'))) {
            return (int) $postMaxSize;
        }

        $metric = strtoupper(substr($postMaxSize, -1));
        $postMaxSize = (int) $postMaxSize;

        switch ($metric) {
            case 'K':
                return $postMaxSize * 1024;
            case 'M':
Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      pathInfo: "/singlevenuerequestquote/6256"
      requestUri: "/singlevenuerequestquote/6256"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
                        // the appropriate method and arguments, returning the results back out.
                        return $pipe($passable, $stack);
                    } elseif (! is_object($pipe)) {
                        [$name, $parameters] = $this->parsePipeString($pipe);

                        // If the pipe is a string we will parse the string and resolve the class out
                        // of the dependency injection container. We can then build a callable and
                        // execute the pipe function giving in the parameters that are required.
                        $pipe = $this->getContainer()->make($name);

                        $parameters = array_merge([$passable, $stack], $parameters);
                    } else {
                        // If the pipe is already an object we'll just make a callable and pass it to
                        // the pipe as-is. There is no need to do any extra parsing and formatting
                        // since the object we're given was already a fully instantiated object.
                        $parameters = [$passable, $stack];
                    }

                    $carry = method_exists($pipe, $this->method)
                                    ? $pipe->{$this->method}(...$parameters)
                                    : $pipe(...$parameters);

                    return $this->handleCarry($carry);
                } catch (Throwable $e) {
                    return $this->handleException($passable, $e);
                }
            };
        };
    }

    /**
     * Parse full pipe string to get name and parameters.
     *
     * @param  string  $pipe
     * @return array
     */
    protected function parsePipeString($pipe)
    {
        [$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);

Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      pathInfo: "/singlevenuerequestquote/6256"
      requestUri: "/singlevenuerequestquote/6256"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    
  2. Closure($passable) {#566 …4}
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php
     * @throws \Symfony\Component\HttpKernel\Exception\HttpException
     * @throws \Illuminate\Foundation\Http\Exceptions\MaintenanceModeException
     */
    public function handle($request, Closure $next)
    {
        if ($this->app->isDownForMaintenance()) {
            $data = json_decode(file_get_contents($this->app->storagePath().'/framework/down'), true);

            if (isset($data['allowed']) && IpUtils::checkIp($request->ip(), (array) $data['allowed'])) {
                return $next($request);
            }

            if ($this->inExceptArray($request)) {
                return $next($request);
            }

            throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
        }

        return $next($request);
    }

    /**
     * Determine if the request has a URI that should be accessible in maintenance mode.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return bool
     */
    protected function inExceptArray($request)
    {
        foreach ($this->except as $except) {
            if ($except !== '/') {
                $except = trim($except, '/');
            }

            if ($request->fullUrlIs($except) || $request->is($except)) {
                return true;
            }
        }

Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      pathInfo: "/singlevenuerequestquote/6256"
      requestUri: "/singlevenuerequestquote/6256"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
                        // the appropriate method and arguments, returning the results back out.
                        return $pipe($passable, $stack);
                    } elseif (! is_object($pipe)) {
                        [$name, $parameters] = $this->parsePipeString($pipe);

                        // If the pipe is a string we will parse the string and resolve the class out
                        // of the dependency injection container. We can then build a callable and
                        // execute the pipe function giving in the parameters that are required.
                        $pipe = $this->getContainer()->make($name);

                        $parameters = array_merge([$passable, $stack], $parameters);
                    } else {
                        // If the pipe is already an object we'll just make a callable and pass it to
                        // the pipe as-is. There is no need to do any extra parsing and formatting
                        // since the object we're given was already a fully instantiated object.
                        $parameters = [$passable, $stack];
                    }

                    $carry = method_exists($pipe, $this->method)
                                    ? $pipe->{$this->method}(...$parameters)
                                    : $pipe(...$parameters);

                    return $this->handleCarry($carry);
                } catch (Throwable $e) {
                    return $this->handleException($passable, $e);
                }
            };
        };
    }

    /**
     * Parse full pipe string to get name and parameters.
     *
     * @param  string  $pipe
     * @return array
     */
    protected function parsePipeString($pipe)
    {
        [$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);

Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      pathInfo: "/singlevenuerequestquote/6256"
      requestUri: "/singlevenuerequestquote/6256"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    
  2. Closure($passable) {#567 …4}
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
    public function via($method)
    {
        $this->method = $method;

        return $this;
    }

    /**
     * Run the pipeline with a final destination callback.
     *
     * @param  \Closure  $destination
     * @return mixed
     */
    public function then(Closure $destination)
    {
        $pipeline = array_reduce(
            array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
        );

        return $pipeline($this->passable);
    }

    /**
     * Run the pipeline and return the result.
     *
     * @return mixed
     */
    public function thenReturn()
    {
        return $this->then(function ($passable) {
            return $passable;
        });
    }

    /**
     * Get the final piece of the Closure onion.
     *
     * @param  \Closure  $destination
     * @return \Closure
     */
Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      pathInfo: "/singlevenuerequestquote/6256"
      requestUri: "/singlevenuerequestquote/6256"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
    }

    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
    {
        $this->app->instance('request', $request);

        Facade::clearResolvedInstance('request');

        $this->bootstrap();

        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }

    /**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }

    /**
     * Get the route dispatcher callback.
     *
     * @return \Closure
     */
    protected function dispatchToRouter()
Arguments
  1. Closure($request) {#449 …4}
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
    public function __construct(Application $app, Router $router)
    {
        $this->app = $app;
        $this->router = $router;

        $this->syncMiddlewareToRouter();
    }

    /**
     * Handle an incoming HTTP request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function handle($request)
    {
        try {
            $request->enableHttpMethodParameterOverride();

            $response = $this->sendRequestThroughRouter($request);
        } catch (Throwable $e) {
            $this->reportException($e);

            $response = $this->renderException($request, $e);
        }

        $this->app['events']->dispatch(
            new RequestHandled($request, $response)
        );

        return $response;
    }

    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      pathInfo: "/singlevenuerequestquote/6256"
      requestUri: "/singlevenuerequestquote/6256"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    
/home/venueevents/public_html/index.php
*/

$app = require_once __DIR__.'/bootstrap/app.php';

/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/

$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);

$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);

$response->send();

$kernel->terminate($request, $response);
 
Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      pathInfo: "/singlevenuerequestquote/6256"
      requestUri: "/singlevenuerequestquote/6256"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
TZ
"Asia/Kolkata"
REDIRECT_REDIRECT_UNIQUE_ID
"aQcn9l0DHQmqNJ-8GXJulAAAAAM"
REDIRECT_REDIRECT_SCRIPT_URL
"/singlevenuerequestquote/6256"
REDIRECT_REDIRECT_SCRIPT_URI
"https://www.venue.events/singlevenuerequestquote/6256"
REDIRECT_REDIRECT_HTTPS
"on"
REDIRECT_REDIRECT_SSL_TLS_SNI
"www.venue.events"
REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"aQcn9l0DHQmqNJ-8GXJulAAAAAM"
REDIRECT_SCRIPT_URL
"/singlevenuerequestquote/6256"
REDIRECT_SCRIPT_URI
"https://www.venue.events/singlevenuerequestquote/6256"
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"www.venue.events"
REDIRECT_HANDLER
"application/x-httpd-ea-php80"
REDIRECT_STATUS
"200"
UNIQUE_ID
"aQcn9l0DHQmqNJ-8GXJulAAAAAM"
SCRIPT_URL
"/singlevenuerequestquote/6256"
SCRIPT_URI
"https://www.venue.events/singlevenuerequestquote/6256"
HTTPS
"on"
SSL_TLS_SNI
"www.venue.events"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"www.venue.events"
HTTP_X_HTTPS
"1"
PATH
"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
SERVER_NAME
"www.venue.events"
SERVER_ADDR
"10.10.22.227"
SERVER_PORT
"443"
REMOTE_ADDR
"216.73.216.38"
DOCUMENT_ROOT
"/home/venueevents/public_html"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
"/cgi-sys"
CONTEXT_DOCUMENT_ROOT
"/usr/local/cpanel/cgi-sys/"
SERVER_ADMIN
"webmaster@venue.events"
SCRIPT_FILENAME
"/home/venueevents/public_html/index.php"
REMOTE_PORT
"28038"
REDIRECT_URL
"/index.php"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/singlevenuerequestquote/6256"
SCRIPT_NAME
"/index.php"
ORIG_SCRIPT_FILENAME
"/usr/local/cpanel/cgi-sys/ea-php80"
ORIG_PATH_INFO
"/index.php"
ORIG_PATH_TRANSLATED
"/home/venueevents/public_html/index.php"
ORIG_SCRIPT_NAME
"/cgi-sys/ea-php80"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1762076663.0304
REQUEST_TIME
1762076663
argv
[]
argc
0
APP_NAME
"Venue.events"
APP_ENV
"production"
APP_KEY
"base64:i3YZ4ltUqjyloxJKqzF6HCeP/kbag+nVYxOQgoZGUCI="
APP_DEBUG
"true"
APP_URL
"https://www.venue.events"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
SESSION_DOMAIN
"venue.events"
SESSION_SECURE_COOKIE
"true"
SESSION_HTTP_ONLY
"true"
SESSION_SAME_SITE
"lax"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"venueeve_vevents"
DB_USERNAME
"venueeve_vevents"
DB_PASSWORD
"B?o8bQf1*JYZ"
DB_CONNECTION_SECOND
"mysql"
DB_HOST_SECOND
"localhost"
DB_PORT_SECOND
"3306"
DB_DATABASE_SECOND
"venueevents_wordpress_db"
DB_USERNAME_SECOND
"venueevents_wordpress_db"
DB_PASSWORD_SECOND
"venueevents_wordpress_db@13"
MAIL_MAILER
"smtp"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"support@venue.events"
MAIL_PASSWORD
"sinomsqhzspfwhew"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_ADDRESS
"support@venue.events"
MAIL_FROM_NAME
"Venue.events"
Key Value
APP_NAME
"Venue.events"
APP_ENV
"production"
APP_KEY
"base64:i3YZ4ltUqjyloxJKqzF6HCeP/kbag+nVYxOQgoZGUCI="
APP_DEBUG
"true"
APP_URL
"https://www.venue.events"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
SESSION_DOMAIN
"venue.events"
SESSION_SECURE_COOKIE
"true"
SESSION_HTTP_ONLY
"true"
SESSION_SAME_SITE
"lax"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"venueeve_vevents"
DB_USERNAME
"venueeve_vevents"
DB_PASSWORD
"B?o8bQf1*JYZ"
DB_CONNECTION_SECOND
"mysql"
DB_HOST_SECOND
"localhost"
DB_PORT_SECOND
"3306"
DB_DATABASE_SECOND
"venueevents_wordpress_db"
DB_USERNAME_SECOND
"venueevents_wordpress_db"
DB_PASSWORD_SECOND
"venueevents_wordpress_db@13"
MAIL_MAILER
"smtp"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"support@venue.events"
MAIL_PASSWORD
"sinomsqhzspfwhew"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_ADDRESS
"support@venue.events"
MAIL_FROM_NAME
"Venue.events"
0. Whoops\Handler\PrettyPageHandler
Whoops! There was an error.
ErrorException (E_WARNING)
include(/home/venueevents/public_html/vendor/composer/../../app/Http/Middleware/TrimStrings.php): Failed to open stream: No such file or directory ErrorException thrown with message "include(/home/venueevents/public_html/vendor/composer/../../app/Http/Middleware/TrimStrings.php): Failed to open stream: No such file or directory" Stacktrace: #11 ErrorException in /home/venueevents/public_html/vendor/composer/ClassLoader.php:571 #10 include in /home/venueevents/public_html/vendor/composer/ClassLoader.php:571 #9 Composer\Autoload\includeFile in /home/venueevents/public_html/vendor/composer/ClassLoader.php:428 #8 Composer\Autoload\ClassLoader:loadClass in [internal]:0 #7 ReflectionClass:__construct in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:809 #6 Illuminate\Container\Container:build in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:691 #5 Illuminate\Container\Container:resolve in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:796 #4 Illuminate\Foundation\Application:resolve in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php:637 #3 Illuminate\Container\Container:make in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:781 #2 Illuminate\Foundation\Application:make in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:204 #1 Illuminate\Foundation\Http\Kernel:terminateMiddleware in /home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:178 #0 Illuminate\Foundation\Http\Kernel:terminate in /home/venueevents/public_html/index.php:53
11
ErrorException
/vendor/composer/ClassLoader.php571
10
include
/vendor/composer/ClassLoader.php571
9
Composer\Autoload\includeFile
/vendor/composer/ClassLoader.php428
8
Composer\Autoload\ClassLoader loadClass
[internal]0
7
ReflectionClass __construct
/vendor/laravel/framework/src/Illuminate/Container/Container.php809
6
Illuminate\Container\Container build
/vendor/laravel/framework/src/Illuminate/Container/Container.php691
5
Illuminate\Container\Container resolve
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php796
4
Illuminate\Foundation\Application resolve
/vendor/laravel/framework/src/Illuminate/Container/Container.php637
3
Illuminate\Container\Container make
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php781
2
Illuminate\Foundation\Application make
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php204
1
Illuminate\Foundation\Http\Kernel terminateMiddleware
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php178
0
Illuminate\Foundation\Http\Kernel terminate
/index.php53
/home/venueevents/public_html/vendor/composer/ClassLoader.php
        if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
            return $file;
        }

        return false;
    }
}

/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 *
 * @param  string $file
 * @return void
 * @private
 */
function includeFile($file)
{
    include $file;
}
 
Arguments
  1. "include(/home/venueevents/public_html/vendor/composer/../../app/Http/Middleware/TrimStrings.php): Failed to open stream: No such file or directory"
    
/home/venueevents/public_html/vendor/composer/ClassLoader.php
        if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
            return $file;
        }

        return false;
    }
}

/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 *
 * @param  string $file
 * @return void
 * @private
 */
function includeFile($file)
{
    include $file;
}
 
/home/venueevents/public_html/vendor/composer/ClassLoader.php
     */
    public function unregister()
    {
        spl_autoload_unregister(array($this, 'loadClass'));

        if (null !== $this->vendorDir) {
            unset(self::$registeredLoaders[$this->vendorDir]);
        }
    }

    /**
     * Loads the given class or interface.
     *
     * @param  string    $class The name of the class
     * @return true|null True if loaded, null otherwise
     */
    public function loadClass($class)
    {
        if ($file = $this->findFile($class)) {
            includeFile($file);

            return true;
        }

        return null;
    }

    /**
     * Finds the path to the file where the class is defined.
     *
     * @param string $class The name of the class
     *
     * @return string|false The path if found, false otherwise
     */
    public function findFile($class)
    {
        // class map lookup
        if (isset($this->classMap[$class])) {
            return $this->classMap[$class];
        }
Arguments
  1. "/home/venueevents/public_html/vendor/composer/../../app/Http/Middleware/TrimStrings.php"
    
[internal]
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php

    /**
     * Instantiate a concrete instance of the given type.
     *
     * @param  \Closure|string  $concrete
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function build($concrete)
    {
        // If the concrete type is actually a Closure, we will just execute it and
        // hand back the results of the functions, which allows functions to be
        // used as resolvers for more fine-tuned resolution of these objects.
        if ($concrete instanceof Closure) {
            return $concrete($this, $this->getLastParameterOverride());
        }

        try {
            $reflector = new ReflectionClass($concrete);
        } catch (ReflectionException $e) {
            throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
        }

        // If the type is not instantiable, the developer is attempting to resolve
        // an abstract type such as an Interface or Abstract Class and there is
        // no binding registered for the abstractions so we need to bail out.
        if (! $reflector->isInstantiable()) {
            return $this->notInstantiable($concrete);
        }

        $this->buildStack[] = $concrete;

        $constructor = $reflector->getConstructor();

        // If there are no constructors, that means there are no dependencies then
        // we can just resolve the instances of the objects right away, without
        // resolving any other types or dependencies out of these containers.
        if (is_null($constructor)) {
            array_pop($this->buildStack);
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php
        $needsContextualBuild = ! empty($parameters) || ! is_null($concrete);

        // If an instance of the type is currently being managed as a singleton we'll
        // just return an existing instance instead of instantiating new instances
        // so the developer can keep using the same objects instance every time.
        if (isset($this->instances[$abstract]) && ! $needsContextualBuild) {
            return $this->instances[$abstract];
        }

        $this->with[] = $parameters;

        if (is_null($concrete)) {
            $concrete = $this->getConcrete($abstract);
        }

        // We're ready to instantiate an instance of the concrete type registered for
        // the binding. This will instantiate the types, as well as resolve any of
        // its "nested" dependencies recursively until all have gotten resolved.
        if ($this->isBuildable($concrete, $abstract)) {
            $object = $this->build($concrete);
        } else {
            $object = $this->make($concrete);
        }

        // If we defined any extenders for this type, we'll need to spin through them
        // and apply them to the object being built. This allows for the extension
        // of services, such as changing configuration or decorating the object.
        foreach ($this->getExtenders($abstract) as $extender) {
            $object = $extender($object, $this);
        }

        // If the requested type is registered as a singleton we'll want to cache off
        // the instances in "memory" so we can return it later without creating an
        // entirely new instance of an object on each subsequent request for it.
        if ($this->isShared($abstract) && ! $needsContextualBuild) {
            $this->instances[$abstract] = $object;
        }

        if ($raiseEvents) {
            $this->fireResolvingCallbacks($abstract, $object);
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    public function make($abstract, array $parameters = [])
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));

        return parent::make($abstract, $parameters);
    }

    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @param  bool  $raiseEvents
     * @return mixed
     */
    protected function resolve($abstract, $parameters = [], $raiseEvents = true)
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));

        return parent::resolve($abstract, $parameters, $raiseEvents);
    }

    /**
     * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
     *
     * @param  string  $abstract
     * @return void
     */
    protected function loadDeferredProviderIfNeeded($abstract)
    {
        if ($this->isDeferredService($abstract) && ! isset($this->instances[$abstract])) {
            $this->loadDeferredProvider($abstract);
        }
    }

    /**
     * Determine if the given abstract type has been bound.
     *
     * @param  string  $abstract
     * @return bool
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
  2. []
    
  3. true
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Container/Container.php
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function makeWith($abstract, array $parameters = [])
    {
        return $this->make($abstract, $parameters);
    }

    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function make($abstract, array $parameters = [])
    {
        return $this->resolve($abstract, $parameters);
    }

    /**
     *  {@inheritdoc}
     */
    public function get($id)
    {
        try {
            return $this->resolve($id);
        } catch (Exception $e) {
            if ($this->has($id)) {
                throw $e;
            }

            throw new EntryNotFoundException($id, $e->getCode(), $e);
        }
    }

    /**
     * Resolve the given type from the container.
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
  2. []
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php

        if (! $this->isBooted()) {
            $this->booting(function () use ($instance) {
                $this->bootProvider($instance);
            });
        }
    }

    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @return mixed
     */
    public function make($abstract, array $parameters = [])
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));

        return parent::make($abstract, $parameters);
    }

    /**
     * Resolve the given type from the container.
     *
     * @param  string  $abstract
     * @param  array  $parameters
     * @param  bool  $raiseEvents
     * @return mixed
     */
    protected function resolve($abstract, $parameters = [], $raiseEvents = true)
    {
        $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract));

        return parent::resolve($abstract, $parameters, $raiseEvents);
    }

    /**
     * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
     *
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
  2. []
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );

        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
                continue;
            }

            [$name] = $this->parseMiddleware($middleware);

            $instance = $this->app->make($name);

            if (method_exists($instance, 'terminate')) {
                $instance->terminate($request, $response);
            }
        }
    }

    /**
     * Gather the route middleware for the given request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    protected function gatherRouteMiddleware($request)
    {
        if ($route = $request->route()) {
            return $this->router->gatherRouteMiddleware($route);
        }

        return [];
Arguments
  1. "App\Http\Middleware\TrimStrings"
    
/home/venueevents/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);

            return $this->router->dispatch($request);
        };
    }

    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    public function terminate($request, $response)
    {
        $this->terminateMiddleware($request, $response);

        $this->app->terminate();
    }

    /**
     * Call the terminate method on any terminable middleware.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Http\Response  $response
     * @return void
     */
    protected function terminateMiddleware($request, $response)
    {
        $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
            $this->gatherRouteMiddleware($request),
            $this->middleware
        );

        foreach ($middlewares as $middleware) {
            if (! is_string($middleware)) {
Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/singlevenuerequestquote/6256"
      #requestUri: "/singlevenuerequestquote/6256"
      #baseUrl: ""
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      basePath: ""
      method: "GET"
      format: "html"
    }
    
  2. Illuminate\Http\Response {#641}
    
/home/venueevents/public_html/index.php
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/

$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);

$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);

$response->send();

$kernel->terminate($request, $response);
 
Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: "/singlevenuerequestquote/6256"
      #requestUri: "/singlevenuerequestquote/6256"
      #baseUrl: ""
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      basePath: ""
      method: "GET"
      format: "html"
    }
    
  2. Illuminate\Http\Response {#641}
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
TZ
"Asia/Kolkata"
REDIRECT_REDIRECT_UNIQUE_ID
"aQcn9l0DHQmqNJ-8GXJulAAAAAM"
REDIRECT_REDIRECT_SCRIPT_URL
"/singlevenuerequestquote/6256"
REDIRECT_REDIRECT_SCRIPT_URI
"https://www.venue.events/singlevenuerequestquote/6256"
REDIRECT_REDIRECT_HTTPS
"on"
REDIRECT_REDIRECT_SSL_TLS_SNI
"www.venue.events"
REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"aQcn9l0DHQmqNJ-8GXJulAAAAAM"
REDIRECT_SCRIPT_URL
"/singlevenuerequestquote/6256"
REDIRECT_SCRIPT_URI
"https://www.venue.events/singlevenuerequestquote/6256"
REDIRECT_HTTPS
"on"
REDIRECT_SSL_TLS_SNI
"www.venue.events"
REDIRECT_HANDLER
"application/x-httpd-ea-php80"
REDIRECT_STATUS
"200"
UNIQUE_ID
"aQcn9l0DHQmqNJ-8GXJulAAAAAM"
SCRIPT_URL
"/singlevenuerequestquote/6256"
SCRIPT_URI
"https://www.venue.events/singlevenuerequestquote/6256"
HTTPS
"on"
SSL_TLS_SNI
"www.venue.events"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"www.venue.events"
HTTP_X_HTTPS
"1"
PATH
"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
SERVER_NAME
"www.venue.events"
SERVER_ADDR
"10.10.22.227"
SERVER_PORT
"443"
REMOTE_ADDR
"216.73.216.38"
DOCUMENT_ROOT
"/home/venueevents/public_html"
REQUEST_SCHEME
"https"
CONTEXT_PREFIX
"/cgi-sys"
CONTEXT_DOCUMENT_ROOT
"/usr/local/cpanel/cgi-sys/"
SERVER_ADMIN
"webmaster@venue.events"
SCRIPT_FILENAME
"/home/venueevents/public_html/index.php"
REMOTE_PORT
"28038"
REDIRECT_URL
"/index.php"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/singlevenuerequestquote/6256"
SCRIPT_NAME
"/index.php"
ORIG_SCRIPT_FILENAME
"/usr/local/cpanel/cgi-sys/ea-php80"
ORIG_PATH_INFO
"/index.php"
ORIG_PATH_TRANSLATED
"/home/venueevents/public_html/index.php"
ORIG_SCRIPT_NAME
"/cgi-sys/ea-php80"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1762076663.0304
REQUEST_TIME
1762076663
argv
[]
argc
0
APP_NAME
"Venue.events"
APP_ENV
"production"
APP_KEY
"base64:i3YZ4ltUqjyloxJKqzF6HCeP/kbag+nVYxOQgoZGUCI="
APP_DEBUG
"true"
APP_URL
"https://www.venue.events"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
SESSION_DOMAIN
"venue.events"
SESSION_SECURE_COOKIE
"true"
SESSION_HTTP_ONLY
"true"
SESSION_SAME_SITE
"lax"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"venueeve_vevents"
DB_USERNAME
"venueeve_vevents"
DB_PASSWORD
"B?o8bQf1*JYZ"
DB_CONNECTION_SECOND
"mysql"
DB_HOST_SECOND
"localhost"
DB_PORT_SECOND
"3306"
DB_DATABASE_SECOND
"venueevents_wordpress_db"
DB_USERNAME_SECOND
"venueevents_wordpress_db"
DB_PASSWORD_SECOND
"venueevents_wordpress_db@13"
MAIL_MAILER
"smtp"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"support@venue.events"
MAIL_PASSWORD
"sinomsqhzspfwhew"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_ADDRESS
"support@venue.events"
MAIL_FROM_NAME
"Venue.events"
Key Value
APP_NAME
"Venue.events"
APP_ENV
"production"
APP_KEY
"base64:i3YZ4ltUqjyloxJKqzF6HCeP/kbag+nVYxOQgoZGUCI="
APP_DEBUG
"true"
APP_URL
"https://www.venue.events"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
SESSION_DOMAIN
"venue.events"
SESSION_SECURE_COOKIE
"true"
SESSION_HTTP_ONLY
"true"
SESSION_SAME_SITE
"lax"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"venueeve_vevents"
DB_USERNAME
"venueeve_vevents"
DB_PASSWORD
"B?o8bQf1*JYZ"
DB_CONNECTION_SECOND
"mysql"
DB_HOST_SECOND
"localhost"
DB_PORT_SECOND
"3306"
DB_DATABASE_SECOND
"venueevents_wordpress_db"
DB_USERNAME_SECOND
"venueevents_wordpress_db"
DB_PASSWORD_SECOND
"venueevents_wordpress_db@13"
MAIL_MAILER
"smtp"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"support@venue.events"
MAIL_PASSWORD
"sinomsqhzspfwhew"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_ADDRESS
"support@venue.events"
MAIL_FROM_NAME
"Venue.events"
0. Whoops\Handler\PrettyPageHandler