Symfony Exception

ConnectionException

HTTP 500 Internal Server Error

Connection refused [tcp://127.0.0.1:6379]

Exception

Predis\Connection\ ConnectionException

  1.      * @param int    $code    Error code.
  2.      */
  3.     protected function onConnectionError($message$code null)
  4.     {
  5.         CommunicationException::handle(
  6.             new ConnectionException($this, static::createExceptionMessage($message), $code)
  7.         );
  8.     }
  9.     /**
  10.      * Helper method to handle protocol errors.
  1.     protected function createStreamSocket(ParametersInterface $parameters$address$flags)
  2.     {
  3.         $timeout = (isset($parameters->timeout) ? (float) $parameters->timeout 5.0);
  4.         if (!$resource = @stream_socket_client($address$errno$errstr$timeout$flags)) {
  5.             $this->onConnectionError(trim($errstr), $errno);
  6.         }
  7.         if (isset($parameters->read_write_timeout)) {
  8.             $rwtimeout = (float) $parameters->read_write_timeout;
  9.             $rwtimeout $rwtimeout $rwtimeout : -1;
  1.                     $address "{$address}/{$parameters->persistent}";
  2.                 }
  3.             }
  4.         }
  5.         $resource $this->createStreamSocket($parameters$address$flags);
  6.         return $resource;
  7.     }
  8.     /**
  1.     protected function createResource()
  2.     {
  3.         switch ($this->parameters->scheme) {
  4.             case 'tcp':
  5.             case 'redis':
  6.                 return $this->tcpStreamInitializer($this->parameters);
  7.             case 'unix':
  8.                 return $this->unixStreamInitializer($this->parameters);
  9.             case 'tls':
  1.      * {@inheritdoc}
  2.      */
  3.     public function connect()
  4.     {
  5.         if (!$this->isConnected()) {
  6.             $this->resource $this->createResource();
  7.             return true;
  8.         }
  9.         return false;
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function connect()
  5.     {
  6.         if (parent::connect() && $this->initCommands) {
  7.             foreach ($this->initCommands as $command) {
  8.                 $response $this->executeCommand($command);
  9.                 if ($response instanceof ErrorResponseInterface) {
  10.                     $this->onConnectionError("`{$command->getId()}` failed: $response"0);
  1.     {
  2.         if (isset($this->resource)) {
  3.             return $this->resource;
  4.         }
  5.         $this->connect();
  6.         return $this->resource;
  7.     }
  8.     /**
  1.      *
  2.      * @param string $buffer Representation of a command in the Redis wire protocol.
  3.      */
  4.     protected function write($buffer)
  5.     {
  6.         $socket $this->getResource();
  7.         while (($length strlen($buffer)) > 0) {
  8.             $written = @fwrite($socket$buffer);
  9.             if ($length === $written) {
  1.         foreach ($arguments as $argument) {
  2.             $arglen strlen($argument);
  3.             $buffer .= "\${$arglen}\r\n{$argument}\r\n";
  4.         }
  5.         $this->write($buffer);
  6.     }
  7. }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function executeCommand(CommandInterface $command)
  5.     {
  6.         $this->writeRequest($command);
  7.         return $this->readResponse($command);
  8.     }
  9.     /**
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function executeCommand(CommandInterface $command)
  5.     {
  6.         $response $this->connection->executeCommand($command);
  7.         if ($response instanceof ResponseInterface) {
  8.             if ($response instanceof ErrorResponseInterface) {
  9.                 $response $this->onErrorResponse($command$response);
  10.             }
  1.      * {@inheritdoc}
  2.      */
  3.     public function __call($commandID$arguments)
  4.     {
  5.         return $this->executeCommand(
  6.             $this->createCommand($commandID$arguments)
  7.         );
  8.     }
  9.     /**
  10.      * {@inheritdoc}
  1.      */
  2.     public function command($method, array $parameters = [])
  3.     {
  4.         $start microtime(true);
  5.         $result $this->client->{$method}(...$parameters);
  6.         $time round((microtime(true) - $start) * 10002);
  7.         if (isset($this->events)) {
  8.             $this->event(new CommandExecuted($method$parameters$time$this));
  1.     {
  2.         if (static::hasMacro($method)) {
  3.             return $this->macroCall($method$parameters);
  4.         }
  5.         return $this->command($method$parameters);
  6.     }
  7. }
  1.      * @param  string|array  $key
  2.      * @return mixed
  3.      */
  4.     public function get($key)
  5.     {
  6.         $value $this->connection()->get($this->prefix.$key);
  7.         return ! is_null($value) ? $this->unserialize($value) : null;
  8.     }
  9.     /**
  1.     {
  2.         if (is_array($key)) {
  3.             return $this->many($key);
  4.         }
  5.         $value $this->store->get($this->itemKey($key));
  6.         // If we could not find the cache value, we will fire the missed event and get
  7.         // the default value for this cache value. This default could be a callback
  8.         // so we will execute the value function which will resolve it if needed.
  9.         if (is_null($value)) {
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function read($sessionId)
  5.     {
  6.         return $this->cache->get($sessionId'');
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      *
  2.      * @return array
  3.      */
  4.     protected function readFromHandler()
  5.     {
  6.         if ($data $this->handler->read($this->getId())) {
  7.             $data = @unserialize($this->prepareForUnserialize($data));
  8.             if ($data !== false && ! is_null($data) && is_array($data)) {
  9.                 return $data;
  10.             }
  1.      *
  2.      * @return void
  3.      */
  4.     protected function loadSession()
  5.     {
  6.         $this->attributes array_merge($this->attributes$this->readFromHandler());
  7.     }
  8.     /**
  9.      * Read the session data from the handler.
  10.      *
  1.      *
  2.      * @return bool
  3.      */
  4.     public function start()
  5.     {
  6.         $this->loadSession();
  7.         if (! $this->has('_token')) {
  8.             $this->regenerateToken();
  9.         }
  1.     protected function startSession(Request $request$session)
  2.     {
  3.         return tap($session, function ($session) use ($request) {
  4.             $session->setRequestOnHandler($request);
  5.             $session->start();
  6.         });
  7.     }
  8.     /**
  9.      * Get the session implementation from the manager.
  1.     {
  2.         if (is_null($callback)) {
  3.             return new HigherOrderTapProxy($value);
  4.         }
  5.         $callback($value);
  6.         return $value;
  7.     }
  8. }
  1.     {
  2.         return tap($session, function ($session) use ($request) {
  3.             $session->setRequestOnHandler($request);
  4.             $session->start();
  5.         });
  6.     }
  7.     /**
  8.      * Get the session implementation from the manager.
  9.      *
  1.     {
  2.         // If a session driver has been configured, we will need to start the session here
  3.         // so that the data is ready for an application. Note that the Laravel sessions
  4.         // do not make use of PHP "native" sessions in any way since they are crappy.
  5.         $request->setLaravelSession(
  6.             $this->startSession($request$session)
  7.         );
  8.         $this->collectGarbage($session);
  9.         $response $next($request);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         } else {
  5.             return $this->handleStatefulRequest($request$session$next);
  6.         }
  7.     }
  8.     /**
  9.      * Handle the given request within session state.
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             return $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/ozunyarataz/public_html/index.php (line 60)
  1. |
  2. */
  3. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  4. $response $kernel->handle($request Illuminate\Http\Request::capture());
  5. $response->send();
  6. $kernel->terminate($request$response);

Stack Trace

ConnectionException

Predis\Connection\ConnectionException:
Connection refused [tcp://127.0.0.1:6379]

  at /home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Connection/AbstractConnection.php:155
  at Predis\Connection\AbstractConnection->onConnectionError('Connection refused', 111)
     (/home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Connection/StreamConnection.php:128)
  at Predis\Connection\StreamConnection->createStreamSocket(object(Parameters), 'tcp://127.0.0.1:6379', 4)
     (/home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Connection/StreamConnection.php:178)
  at Predis\Connection\StreamConnection->tcpStreamInitializer(object(Parameters))
     (/home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Connection/StreamConnection.php:100)
  at Predis\Connection\StreamConnection->createResource()
     (/home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Connection/AbstractConnection.php:81)
  at Predis\Connection\AbstractConnection->connect()
     (/home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Connection/StreamConnection.php:258)
  at Predis\Connection\StreamConnection->connect()
     (/home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Connection/AbstractConnection.php:180)
  at Predis\Connection\AbstractConnection->getResource()
     (/home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Connection/StreamConnection.php:288)
  at Predis\Connection\StreamConnection->write('*2
$3
GET
$93
ozunyarat_81247123_database_ozunyarat_81247123_cache:kY7TCKkDp9Mt6wCh25Xjpqm9M8bByKYNawU4GzPa
')
     (/home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Connection/StreamConnection.php:394)
  at Predis\Connection\StreamConnection->writeRequest(object(StringGet))
     (/home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Connection/AbstractConnection.php:110)
  at Predis\Connection\AbstractConnection->executeCommand(object(StringGet))
     (/home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Client.php:331)
  at Predis\Client->executeCommand(object(StringGet))
     (/home/ozunyarataz/ozunyarat/vendor/predis/predis/src/Client.php:314)
  at Predis\Client->__call('get', array('ozunyarat_81247123_cache:kY7TCKkDp9Mt6wCh25Xjpqm9M8bByKYNawU4GzPa'))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Redis/Connections/Connection.php:116)
  at Illuminate\Redis\Connections\Connection->command('get', array('ozunyarat_81247123_cache:kY7TCKkDp9Mt6wCh25Xjpqm9M8bByKYNawU4GzPa'))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Redis/Connections/Connection.php:220)
  at Illuminate\Redis\Connections\Connection->__call('get', array('ozunyarat_81247123_cache:kY7TCKkDp9Mt6wCh25Xjpqm9M8bByKYNawU4GzPa'))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Cache/RedisStore.php:54)
  at Illuminate\Cache\RedisStore->get('kY7TCKkDp9Mt6wCh25Xjpqm9M8bByKYNawU4GzPa')
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Cache/Repository.php:97)
  at Illuminate\Cache\Repository->get('kY7TCKkDp9Mt6wCh25Xjpqm9M8bByKYNawU4GzPa', '')
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Session/CacheBasedSessionHandler.php:58)
  at Illuminate\Session\CacheBasedSessionHandler->read('kY7TCKkDp9Mt6wCh25Xjpqm9M8bByKYNawU4GzPa')
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Session/Store.php:97)
  at Illuminate\Session\Store->readFromHandler()
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Session/Store.php:87)
  at Illuminate\Session\Store->loadSession()
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Session/Store.php:71)
  at Illuminate\Session\Store->start()
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:142)
  at Illuminate\Session\Middleware\StartSession->Illuminate\Session\Middleware\{closure}(object(EncryptedStore))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Support/helpers.php:433)
  at tap(object(EncryptedStore), object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:143)
  at Illuminate\Session\Middleware\StartSession->startSession(object(Request), object(EncryptedStore))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:111)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(EncryptedStore), object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:62)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/fruitcake/laravel-cors/src/HandleCors.php:37)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/ozunyarataz/ozunyarat/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/ozunyarataz/public_html/index.php:60)