careemlankademo.vimi50.site Open in urlscan Pro
216.185.57.104  Public Scan

Submitted URL: http://careemlankademo.vimi50.site/
Effective URL: https://careemlankademo.vimi50.site/
Submission: On December 09 via api from US — Scanned from US

Form analysis 0 forms found in the DOM

Text Content

SYMFONY EXCEPTION

Symfony Docs


TENANTCOULDNOTBEIDENTIFIEDONDOMAINEXCEPTION


HTTP 500 INTERNAL SERVER ERROR


TENANT COULD NOT BE IDENTIFIED ON DOMAIN CAREEMLANKADEMO.VIMI50.SITE


 * Exception
 * Stack Trace


EXCEPTION


STANCL\TENANCY\EXCEPTIONS\ TENANTCOULDNOTBEIDENTIFIEDONDOMAINEXCEPTION

in
/home/ezymo/public_html/vendor/stancl/tenancy/src/Resolvers/DomainTenantResolver.php
(line 48)
 43.             $this->setCurrentDomain($tenant, $domain);
 44. 
 45.             return $tenant;
 46.         }
 47. 
 48.         throw new TenantCouldNotBeIdentifiedOnDomainException($args[0]);
 49.     }
 50. 
 51.     public function resolved(Tenant $tenant, ...$args): void
 52.     {
 53.         $this->setCurrentDomain($tenant, $args[0]);

in
/home/ezymo/public_html/vendor/stancl/tenancy/src/Resolvers/Contracts/CachedTenantResolver.php
-> resolveWithoutCache (line 34)
 29.     }
 30. 
 31.     public function resolve(...$args): Tenant
 32.     {
 33.         if (! static::$shouldCache) {
 34.             return $this->resolveWithoutCache(...$args);
 35.         }
 36. 
 37.         $key = $this->getCacheKey(...$args);
 38. 
 39.         if ($tenant = $this->cache->get($key)) {

in
/home/ezymo/public_html/vendor/stancl/tenancy/src/Middleware/IdentificationMiddleware.php
-> resolve (line 26)
 21. 
 22.     public function initializeTenancy($request, $next, ...$resolverArguments)
 23.     {
 24.         try {
 25.             $this->tenancy->initialize(
 26.                 $this->resolver->resolve(...$resolverArguments)
 27.             );
 28.         } catch (TenantCouldNotBeIdentifiedException $e) {
 29.             $onFail = static::$onFail ?? function ($e) {
 30.                 throw $e;
 31.             };

in
/home/ezymo/public_html/vendor/stancl/tenancy/src/Middleware/InitializeTenancyByDomain.php
-> initializeTenancy (line 38)
 33.      * @return mixed
 34.      */
 35.     public function handle($request, Closure $next)
 36.     {
 37.         return $this->initializeTenancy(
 38.             $request, $next, $request->getHost()
 39.         );
 40.     }
 41. }
 42. 

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 180)
 175.                         // since the object we're given was already a fully instantiated object.
 176.                         $parameters = [$passable, $stack];
 177.                     }
 178. 
 179.                     $carry = method_exists($pipe, $this->method)
 180.                                     ? $pipe->{$this->method}(...$parameters)
 181.                                     : $pipe(...$parameters);
 182. 
 183.                     return $this->handleCarry($carry);
 184.                 } catch (Throwable $e) {
 185.                     return $this->handleException($passable, $e);

in
/home/ezymo/public_html/vendor/stancl/tenancy/src/Middleware/PreventAccessFromCentralDomains.php
-> Illuminate\Pipeline\{closure} (line 29)
 24.             };
 25. 
 26.             return $abortRequest($request, $next);
 27.         }
 28. 
 29.         return $next($request);
 30.     }
 31. }
 32. 

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 180)
 175.                         // since the object we're given was already a fully instantiated object.
 176.                         $parameters = [$passable, $stack];
 177.                     }
 178. 
 179.                     $carry = method_exists($pipe, $this->method)
 180.                                     ? $pipe->{$this->method}(...$parameters)
 181.                                     : $pipe(...$parameters);
 182. 
 183.                     return $this->handleCarry($carry);
 184.                 } catch (Throwable $e) {
 185.                     return $this->handleException($passable, $e);

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php
-> Illuminate\Pipeline\{closure} (line 37)
 32.      * @param  \Closure  $next
 33.      * @return mixed
 34.      */
 35.     public function handle($request, Closure $next)
 36.     {
 37.         $response = $next($request);
 38. 
 39.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
 40.             $response->headers->setCookie($cookie);
 41.         }
 42. 

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 180)
 175.                         // since the object we're given was already a fully instantiated object.
 176.                         $parameters = [$passable, $stack];
 177.                     }
 178. 
 179.                     $carry = method_exists($pipe, $this->method)
 180.                                     ? $pipe->{$this->method}(...$parameters)
 181.                                     : $pipe(...$parameters);
 182. 
 183.                     return $this->handleCarry($carry);
 184.                 } catch (Throwable $e) {
 185.                     return $this->handleException($passable, $e);

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php
-> Illuminate\Pipeline\{closure} (line 67)
 62.      * @param  \Closure  $next
 63.      * @return \Symfony\Component\HttpFoundation\Response
 64.      */
 65.     public function handle($request, Closure $next)
 66.     {
 67.         return $this->encrypt($next($this->decrypt($request)));
 68.     }
 69. 
 70.     /**
 71.      * Decrypt the cookies on the request.
 72.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 180)
 175.                         // since the object we're given was already a fully instantiated object.
 176.                         $parameters = [$passable, $stack];
 177.                     }
 178. 
 179.                     $carry = method_exists($pipe, $this->method)
 180.                                     ? $pipe->{$this->method}(...$parameters)
 181.                                     : $pipe(...$parameters);
 182. 
 183.                     return $this->handleCarry($carry);
 184.                 } catch (Throwable $e) {
 185.                     return $this->handleException($passable, $e);

Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in
/home/ezymo/public_html/app/Http/Middleware/AutoLogoutMiddleware.php (line 29)
 24.                 Session::flush(); // Remove all session data
 25.                 return redirect('/login')->with('warning', 'You have been automatically logged out due to inactivity.');
 26.             }
 27.             Session::put('lastActivityTime', time());
 28.         }
 29.         return $next($request);
 30.     }
 31. }
 32. 

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 180)
 175.                         // since the object we're given was already a fully instantiated object.
 176.                         $parameters = [$passable, $stack];
 177.                     }
 178. 
 179.                     $carry = method_exists($pipe, $this->method)
 180.                                     ? $pipe->{$this->method}(...$parameters)
 181.                                     : $pipe(...$parameters);
 182. 
 183.                     return $this->handleCarry($carry);
 184.                 } catch (Throwable $e) {
 185.                     return $this->handleException($passable, $e);

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 116)
 111.     {
 112.         $pipeline = array_reduce(
 113.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 114.         );
 115. 
 116.         return $pipeline($this->passable);
 117.     }
 118. 
 119.     /**
 120.      * Run the pipeline and return the result.
 121.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> then (line 799)
 794.         return (new Pipeline($this->container))
 795.                         ->send($request)
 796.                         ->through($middleware)
 797.                         ->then(fn ($request) => $this->prepareResponse(
 798.                             $request, $route->run()
 799.                         ));
 800.     }
 801. 
 802.     /**
 803.      * Gather the middleware for the given route with resolved class names.
 804.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRouteWithinStack (line 776)
 771.         $request->setRouteResolver(fn () => $route);
 772. 
 773.         $this->events->dispatch(new RouteMatched($route, $request));
 774. 
 775.         return $this->prepareResponse($request,
 776.             $this->runRouteWithinStack($route, $request)
 777.         );
 778.     }
 779. 
 780.     /**
 781.      * Run the given route within a Stack "onion" instance.

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRoute (line 740)
 735.      * @param  \Illuminate\Http\Request  $request
 736.      * @return \Symfony\Component\HttpFoundation\Response
 737.      */
 738.     public function dispatchToRoute(Request $request)
 739.     {
 740.         return $this->runRoute($request, $this->findRoute($request));
 741.     }
 742. 
 743.     /**
 744.      * Find the route matching a given request.
 745.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> dispatchToRoute (line 729)
 724.      */
 725.     public function dispatch(Request $request)
 726.     {
 727.         $this->currentRequest = $request;
 728. 
 729.         return $this->dispatchToRoute($request);
 730.     }
 731. 
 732.     /**
 733.      * Dispatch the request to a route and return the response.
 734.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> dispatch (line 200)
 195.     protected function dispatchToRouter()
 196.     {
 197.         return function ($request) {
 198.             $this->app->instance('request', $request);
 199. 
 200.             return $this->router->dispatch($request);
 201.         };
 202.     }
 203. 
 204.     /**
 205.      * Call the terminate method on any terminable middleware.

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Foundation\Http\{closure} (line 141)
 136.      */
 137.     protected function prepareDestination(Closure $destination)
 138.     {
 139.         return function ($passable) use ($destination) {
 140.             try {
 141.                 return $destination($passable);
 142.             } catch (Throwable $e) {
 143.                 return $this->handleException($passable, $e);
 144.             }
 145.         };
 146.     }

in
/home/ezymo/public_html/vendor/litespeed/lscache-laravel/src/LSCacheMiddleware.php
-> Illuminate\Pipeline\{closure} (line 21)
 16.      * @param  string                   $lscache_control
 17.      * @return mixed
 18.      */
 19.     public function handle($request, Closure $next, string $lscache_control = null)
 20.     {
 21.         $response = $next($request);
 22. 
 23.         if (!in_array($request->getMethod(), ['GET', 'HEAD']) || !$response->getContent()) {
 24.             return $response;
 25.         }
 26. 

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 180)
 175.                         // since the object we're given was already a fully instantiated object.
 176.                         $parameters = [$passable, $stack];
 177.                     }
 178. 
 179.                     $carry = method_exists($pipe, $this->method)
 180.                                     ? $pipe->{$this->method}(...$parameters)
 181.                                     : $pipe(...$parameters);
 182. 
 183.                     return $this->handleCarry($carry);
 184.                 } catch (Throwable $e) {
 185.                     return $this->handleException($passable, $e);

in
/home/ezymo/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php
-> Illuminate\Pipeline\{closure} (line 59)
 54.      * @return mixed
 55.      */
 56.     public function handle($request, Closure $next)
 57.     {
 58.         if (!$this->debugbar->isEnabled() || $this->inExceptArray($request)) {
 59.             return $next($request);
 60.         }
 61. 
 62.         $this->debugbar->boot();
 63. 
 64.         try {

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 180)
 175.                         // since the object we're given was already a fully instantiated object.
 176.                         $parameters = [$passable, $stack];
 177.                     }
 178. 
 179.                     $carry = method_exists($pipe, $this->method)
 180.                                     ? $pipe->{$this->method}(...$parameters)
 181.                                     : $pipe(...$parameters);
 182. 
 183.                     return $this->handleCarry($carry);
 184.                 } catch (Throwable $e) {
 185.                     return $this->handleException($passable, $e);

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
-> Illuminate\Pipeline\{closure} (line 21)
 16.      */
 17.     public function handle($request, Closure $next)
 18.     {
 19.         $this->clean($request);
 20. 
 21.         return $next($request);
 22.     }
 23. 
 24.     /**
 25.      * Clean the request's data.
 26.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php
-> handle (line 31)
 26.             if ($callback($request)) {
 27.                 return $next($request);
 28.             }
 29.         }
 30. 
 31.         return parent::handle($request, $next);
 32.     }
 33. 
 34.     /**
 35.      * Transform the given value.
 36.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 180)
 175.                         // since the object we're given was already a fully instantiated object.
 176.                         $parameters = [$passable, $stack];
 177.                     }
 178. 
 179.                     $carry = method_exists($pipe, $this->method)
 180.                                     ? $pipe->{$this->method}(...$parameters)
 181.                                     : $pipe(...$parameters);
 182. 
 183.                     return $this->handleCarry($carry);
 184.                 } catch (Throwable $e) {
 185.                     return $this->handleException($passable, $e);

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
-> Illuminate\Pipeline\{closure} (line 21)
 16.      */
 17.     public function handle($request, Closure $next)
 18.     {
 19.         $this->clean($request);
 20. 
 21.         return $next($request);
 22.     }
 23. 
 24.     /**
 25.      * Clean the request's data.
 26.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php
-> handle (line 40)
 35.             if ($callback($request)) {
 36.                 return $next($request);
 37.             }
 38.         }
 39. 
 40.         return parent::handle($request, $next);
 41.     }
 42. 
 43.     /**
 44.      * Transform the given value.
 45.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 180)
 175.                         // since the object we're given was already a fully instantiated object.
 176.                         $parameters = [$passable, $stack];
 177.                     }
 178. 
 179.                     $carry = method_exists($pipe, $this->method)
 180.                                     ? $pipe->{$this->method}(...$parameters)
 181.                                     : $pipe(...$parameters);
 182. 
 183.                     return $this->handleCarry($carry);
 184.                 } catch (Throwable $e) {
 185.                     return $this->handleException($passable, $e);

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php
-> Illuminate\Pipeline\{closure} (line 27)
 22. 
 23.         if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
 24.             throw new PostTooLargeException;
 25.         }
 26. 
 27.         return $next($request);
 28.     }
 29. 
 30.     /**
 31.      * Determine the server 'post_max_size' as bytes.
 32.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 180)
 175.                         // since the object we're given was already a fully instantiated object.
 176.                         $parameters = [$passable, $stack];
 177.                     }
 178. 
 179.                     $carry = method_exists($pipe, $this->method)
 180.                                     ? $pipe->{$this->method}(...$parameters)
 181.                                     : $pipe(...$parameters);
 182. 
 183.                     return $this->handleCarry($carry);
 184.                 } catch (Throwable $e) {
 185.                     return $this->handleException($passable, $e);

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php
-> Illuminate\Pipeline\{closure} (line 86)
 81.                 null,
 82.                 $this->getHeaders($data)
 83.             );
 84.         }
 85. 
 86.         return $next($request);
 87.     }
 88. 
 89.     /**
 90.      * Determine if the incoming request has a maintenance mode bypass cookie.
 91.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 180)
 175.                         // since the object we're given was already a fully instantiated object.
 176.                         $parameters = [$passable, $stack];
 177.                     }
 178. 
 179.                     $carry = method_exists($pipe, $this->method)
 180.                                     ? $pipe->{$this->method}(...$parameters)
 181.                                     : $pipe(...$parameters);
 182. 
 183.                     return $this->handleCarry($carry);
 184.                 } catch (Throwable $e) {
 185.                     return $this->handleException($passable, $e);

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 116)
 111.     {
 112.         $pipeline = array_reduce(
 113.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 114.         );
 115. 
 116.         return $pipeline($this->passable);
 117.     }
 118. 
 119.     /**
 120.      * Run the pipeline and return the result.
 121.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> then (line 175)
 170.         $this->bootstrap();
 171. 
 172.         return (new Pipeline($this->app))
 173.                     ->send($request)
 174.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
 175.                     ->then($this->dispatchToRouter());
 176.     }
 177. 
 178.     /**
 179.      * Bootstrap the application for HTTP requests.
 180.      *

in
/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> sendRequestThroughRouter (line 144)
 139.         $this->requestStartedAt = Carbon::now();
 140. 
 141.         try {
 142.             $request->enableHttpMethodParameterOverride();
 143. 
 144.             $response = $this->sendRequestThroughRouter($request);
 145.         } catch (Throwable $e) {
 146.             $this->reportException($e);
 147. 
 148.             $response = $this->renderException($request, $e);
 149.         }

Kernel->handle(object(Request)) in /home/ezymo/public_html/public/index.php
(line 53)
 48. */
 49. 
 50. $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 51. 
 52. $response = $kernel->handle(
 53.     $request = Illuminate\Http\Request::capture()
 54. );
 55. 
 56. $response->send();
 57. 
 58. $kernel->terminate($request, $response);

require_once('/home/ezymo/public_html/public/index.php') in
/home/ezymo/public_html/index.php (line 20)
 15. // application without having installed a "real" web server software here.
 16. if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
 17.     return false;
 18. }
 19. 
 20. require_once __DIR__.'/public/index.php';
 21. 


STACK TRACE

TenantCouldNotBeIdentifiedOnDomainException

Stancl\Tenancy\Exceptions\TenantCouldNotBeIdentifiedOnDomainException:
Tenant could not be identified on domain careemlankademo.vimi50.site

  at /home/ezymo/public_html/vendor/stancl/tenancy/src/Resolvers/DomainTenantResolver.php:48
  at Stancl\Tenancy\Resolvers\DomainTenantResolver->resolveWithoutCache('careemlankademo.vimi50.site')
     (/home/ezymo/public_html/vendor/stancl/tenancy/src/Resolvers/Contracts/CachedTenantResolver.php:34)
  at Stancl\Tenancy\Resolvers\Contracts\CachedTenantResolver->resolve('careemlankademo.vimi50.site')
     (/home/ezymo/public_html/vendor/stancl/tenancy/src/Middleware/IdentificationMiddleware.php:26)
  at Stancl\Tenancy\Middleware\IdentificationMiddleware->initializeTenancy(object(Request), object(Closure), 'careemlankademo.vimi50.site')
     (/home/ezymo/public_html/vendor/stancl/tenancy/src/Middleware/InitializeTenancyByDomain.php:38)
  at Stancl\Tenancy\Middleware\InitializeTenancyByDomain->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/stancl/tenancy/src/Middleware/PreventAccessFromCentralDomains.php:29)
  at Stancl\Tenancy\Middleware\PreventAccessFromCentralDomains->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/app/Http/Middleware/AutoLogoutMiddleware.php:29)
  at App\Http\Middleware\AutoLogoutMiddleware->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:799)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/litespeed/lscache-laravel/src/LSCacheMiddleware.php:21)
  at Litespeed\LSCache\LSCacheMiddleware->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:59)
  at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/ezymo/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/ezymo/public_html/public/index.php:53)
  at require_once('/home/ezymo/public_html/public/index.php')
     (/home/ezymo/public_html/index.php:20)