www.sale.digizy.store Open in urlscan Pro
153.92.11.243  Public Scan

URL: https://www.sale.digizy.store/
Submission: On December 06 via api from US — Scanned from IL

Form analysis 0 forms found in the DOM

Text Content

SYMFONY EXCEPTION

Symfony Docs


PDOEXCEPTION QUERYEXCEPTION VIEWEXCEPTION VIEWEXCEPTION VIEWEXCEPTION


HTTP 500 INTERNAL SERVER ERROR


SQLSTATE[42S02]: BASE TABLE OR VIEW NOT FOUND: 1146 TABLE
'U877739372_DEMO.SETTINGS' DOESN'T EXIST (SQL: SELECT EXISTS(SELECT * FROM
`SETTINGS` WHERE `SETTING_NAME` = APP_NAME) AS `EXISTS`) (VIEW:
/HOME/U877739372/DOMAINS/SALE.DIGIZY.STORE/PUBLIC_HTML/RESOURCES/VIEWS/LAYOUTS/INCLUDE/HEAD.BLADE.PHP)
(VIEW:
/HOME/U877739372/DOMAINS/SALE.DIGIZY.STORE/PUBLIC_HTML/RESOURCES/VIEWS/LAYOUTS/INCLUDE/HEAD.BLADE.PHP)
(VIEW:
/HOME/U877739372/DOMAINS/SALE.DIGIZY.STORE/PUBLIC_HTML/RESOURCES/VIEWS/LAYOUTS/INCLUDE/HEAD.BLADE.PHP)


 * Exceptions 5
 * Stack Traces 5


EXCEPTIONS 5


ILLUMINATE\VIEW\ VIEWEXCEPTION

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php
(line 712)
 707. 
 708.         // If an exception occurs when attempting to run a query, we'll format the error
 709.         // message to include the bindings with SQL, which will make this exception a
 710.         // lot more helpful to the developer instead of just the database's errors.
 711.         catch (Exception $e) {
 712.             throw new QueryException(
 713.                 $query, $this->prepareBindings($bindings), $e
 714.             );
 715.         }
 716.     }
 717. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> handleViewException (line 60)
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());
 64.     }
 65. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php
-> render (line 69)
 64. 
 65.         // If this content implements the "Renderable" interface then we will call the
 66.         // render method on the object so we will avoid any "__toString" exceptions
 67.         // that might be thrown and have their errors obscured by PHP's handling.
 68.         elseif ($content instanceof Renderable) {
 69.             $content = $content->render();
 70.         }
 71. 
 72.         parent::setContent($content);
 73. 
 74.         return $this;

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php
-> setContent (line 35)
 30.      */
 31.     public function __construct($content = '', $status = 200, array $headers = [])
 32.     {
 33.         $this->headers = new ResponseHeaderBag($headers);
 34. 
 35.         $this->setContent($content);
 36.         $this->setStatusCode($status);
 37.         $this->setProtocolVersion('1.0');
 38.     }
 39. 
 40.     /**

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> __construct (line 820)
 815.                     $response instanceof JsonSerializable ||
 816.                     $response instanceof \stdClass ||
 817.                     is_array($response))) {
 818.             $response = new JsonResponse($response);
 819.         } elseif (! $response instanceof SymfonyResponse) {
 820.             $response = new Response($response, 200, ['Content-Type' => 'text/html']);
 821.         }
 822. 
 823.         if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
 824.             $response->setNotModified();
 825.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
:: toResponse (line 789)
 784.      * @param  mixed  $response
 785.      * @return \Symfony\Component\HttpFoundation\Response
 786.      */
 787.     public function prepareResponse($request, $response)
 788.     {
 789.         return static::toResponse($request, $response);
 790.     }
 791. 
 792.     /**
 793.      * Static version of prepareResponse.
 794.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> prepareResponse (line 720)
 715. 
 716.         return (new Pipeline($this->container))
 717.                         ->send($request)
 718.                         ->through($middleware)
 719.                         ->then(function ($request) use ($route) {
 720.                             return $this->prepareResponse(
 721.                                 $request, $route->run()
 722.                             );
 723.                         });
 724.     }
 725. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Routing\{closure} (line 128)
 123.      */
 124.     protected function prepareDestination(Closure $destination)
 125.     {
 126.         return function ($passable) use ($destination) {
 127.             try {
 128.                 return $destination($passable);
 129.             } catch (Throwable $e) {
 130.                 return $this->handleException($passable, $e);
 131.             }
 132.         };
 133.     }

Pipeline->Illuminate\Pipeline\{closure}() in
/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/RedirectIfAuthenticated.php
(line 24)
 19.     {
 20.         if (Auth::guard($guard)->check()) {
 21.             return redirect('/dashboard');
 22.         }
 23. 
 24.         return $next($request);
 25.     }
 26. }
 27. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

Pipeline->Illuminate\Pipeline\{closure}() in
/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/Language.php
(line 36)
 31. 
 32.         }
 33. 
 34.         app()->setLocale($locale);
 35. 
 36.         return $next($request);
 37.     }
 38. }
 39. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
-> Illuminate\Pipeline\{closure} (line 50)
 45.             }
 46. 
 47.             throw $exception;
 48.         }
 49. 
 50.         return $next($request);
 51.     }
 52. }
 53. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php
-> Illuminate\Pipeline\{closure} (line 78)
 73.             $this->isReading($request) ||
 74.             $this->runningUnitTests() ||
 75.             $this->inExceptArray($request) ||
 76.             $this->tokensMatch($request)
 77.         ) {
 78.             return tap($next($request), function ($response) use ($request) {
 79.                 if ($this->shouldAddXsrfTokenCookie()) {
 80.                     $this->addCookieToResponse($request, $response);
 81.                 }
 82.             });
 83.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php
-> Illuminate\Pipeline\{closure} (line 49)
 44. 
 45.         // Putting the errors in the view for every view allows the developer to just
 46.         // assume that some errors are always available, which is convenient since
 47.         // they don't have to continually run checks for the presence of errors.
 48. 
 49.         return $next($request);
 50.     }
 51. }
 52. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
-> Illuminate\Pipeline\{closure} (line 121)
 116.             $this->startSession($request, $session)
 117.         );
 118. 
 119.         $this->collectGarbage($session);
 120. 
 121.         $response = $next($request);
 122. 
 123.         $this->storeCurrentUrl($request, $session);
 124. 
 125.         $this->addCookieToResponse($response, $session);
 126. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
-> handleStatefulRequest (line 64)
 59.         if ($this->manager->shouldBlock() ||
 60.             ($request->route() instanceof Route && $request->route()->locksFor())) {
 61.             return $this->handleRequestWhileBlocking($request, $session, $next);
 62.         }
 63. 
 64.         return $this->handleStatefulRequest($request, $session, $next);
 65.     }
 66. 
 67.     /**
 68.      * Handle the given request within session state.
 69.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 103)
 98.      {
 99.          $pipeline = array_reduce(
 100.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 101.         );
 102. 
 103.         return $pipeline($this->passable);
 104.     }
 105. 
 106.     /**
 107.      * Run the pipeline and return the result.
 108.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> then (line 719)
 714.         $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
 715. 
 716.         return (new Pipeline($this->container))
 717.                         ->send($request)
 718.                         ->through($middleware)
 719.                         ->then(function ($request) use ($route) {
 720.                             return $this->prepareResponse(
 721.                                 $request, $route->run()
 722.                             );
 723.                         });
 724.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRouteWithinStack (line 698)
 693.         });
 694. 
 695.         $this->events->dispatch(new RouteMatched($route, $request));
 696. 
 697.         return $this->prepareResponse($request,
 698.             $this->runRouteWithinStack($route, $request)
 699.         );
 700.     }
 701. 
 702.     /**
 703.      * Run the given route within a Stack "onion" instance.

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRoute (line 662)
 657.      * @param  \Illuminate\Http\Request  $request
 658.      * @return \Symfony\Component\HttpFoundation\Response
 659.      */
 660.     public function dispatchToRoute(Request $request)
 661.     {
 662.         return $this->runRoute($request, $this->findRoute($request));
 663.     }
 664. 
 665.     /**
 666.      * Find the route matching a given request.
 667.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> dispatchToRoute (line 651)
 646.      */
 647.     public function dispatch(Request $request)
 648.     {
 649.         $this->currentRequest = $request;
 650. 
 651.         return $this->dispatchToRoute($request);
 652.     }
 653. 
 654.     /**
 655.      * Dispatch the request to a route and return the response.
 656.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> dispatch (line 167)
 162.     protected function dispatchToRouter()
 163.     {
 164.         return function ($request) {
 165.             $this->app->instance('request', $request);
 166. 
 167.             return $this->router->dispatch($request);
 168.         };
 169.     }
 170. 
 171.     /**
 172.      * Call the terminate method on any terminable middleware.

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Foundation\Http\{closure} (line 128)
 123.      */
 124.     protected function prepareDestination(Closure $destination)
 125.     {
 126.         return function ($passable) use ($destination) {
 127.             try {
 128.                 return $destination($passable);
 129.             } catch (Throwable $e) {
 130.                 return $this->handleException($passable, $e);
 131.             }
 132.         };
 133.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/fideloper/proxy/src/TrustProxies.php
-> Illuminate\Pipeline\{closure} (line 57)
 52.     public function handle(Request $request, Closure $next)
 53.     {
 54.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
 55.         $this->setTrustedProxyIpAddresses($request);
 56. 
 57.         return $next($request);
 58.     }
 59. 
 60.     /**
 61.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
 62.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 103)
 98.      {
 99.          $pipeline = array_reduce(
 100.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 101.         );
 102. 
 103.         return $pipeline($this->passable);
 104.     }
 105. 
 106.     /**
 107.      * Run the pipeline and return the result.
 108.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> then (line 142)
 137.         $this->bootstrap();
 138. 
 139.         return (new Pipeline($this->app))
 140.                     ->send($request)
 141.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
 142.                     ->then($this->dispatchToRouter());
 143.     }
 144. 
 145.     /**
 146.      * Bootstrap the application for HTTP requests.
 147.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> sendRequestThroughRouter (line 111)
 106.     public function handle($request)
 107.     {
 108.         try {
 109.             $request->enableHttpMethodParameterOverride();
 110. 
 111.             $response = $this->sendRequestThroughRouter($request);
 112.         } catch (Throwable $e) {
 113.             $this->reportException($e);
 114. 
 115.             $response = $this->renderException($request, $e);
 116.         }

Kernel->handle() in
/home/u877739372/domains/sale.digizy.store/public_html/public/index.php (line
50)
 45. $app = require_once __DIR__ . '/../bootstrap/app.php';
 46. 
 47. 
 48. $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 49. 
 50. $response = $kernel->handle(
 51.     $request = Illuminate\Http\Request::capture()
 52. );
 53. 
 54. $response->send();
 55. $kernel->terminate($request, $response);


ILLUMINATE\VIEW\ VIEWEXCEPTION

SQLSTATE[42S02]: Base table or view not found: 1146 Table
'u877739372_demo.settings' doesn't exist (SQL: select exists(select * from
`settings` where `setting_name` = app_name) as `exists`) (View:
/home/u877739372/domains/sale.digizy.store/public_html/resources/views/layouts/include/head.blade.php)
(View:
/home/u877739372/domains/sale.digizy.store/public_html/resources/views/layouts/include/head.blade.php)

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php
(line 712)
 707. 
 708.         // If an exception occurs when attempting to run a query, we'll format the error
 709.         // message to include the bindings with SQL, which will make this exception a
 710.         // lot more helpful to the developer instead of just the database's errors.
 711.         catch (Exception $e) {
 712.             throw new QueryException(
 713.                 $query, $this->prepareBindings($bindings), $e
 714.             );
 715.         }
 716.     }
 717. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> handleViewException (line 60)
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());
 64.     }
 65. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

View->render() in
/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php
(line 8)
 3. <?php $__env->startSection('content'); ?>
 4. 
 5.     <login-form checkemail="<?php echo e($email); ?>" checkpass="<?php echo e($password); ?>"></login-form>
 6. 
 7. <?php $__env->stopSection(); ?> 
 8. <?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u877739372/domains/sale.digizy.store/public_html/resources/views/auth/login.blade.php ENDPATH**/ ?>

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require (line 107)
 102.             $__data = $data;
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
:: Illuminate\Filesystem\{closure} (line 108)
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }
 113. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> getRequire (line 58)
 53. 
 54.         // We'll evaluate the contents of the view inside a try/catch block so we can
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php
-> render (line 69)
 64. 
 65.         // If this content implements the "Renderable" interface then we will call the
 66.         // render method on the object so we will avoid any "__toString" exceptions
 67.         // that might be thrown and have their errors obscured by PHP's handling.
 68.         elseif ($content instanceof Renderable) {
 69.             $content = $content->render();
 70.         }
 71. 
 72.         parent::setContent($content);
 73. 
 74.         return $this;

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php
-> setContent (line 35)
 30.      */
 31.     public function __construct($content = '', $status = 200, array $headers = [])
 32.     {
 33.         $this->headers = new ResponseHeaderBag($headers);
 34. 
 35.         $this->setContent($content);
 36.         $this->setStatusCode($status);
 37.         $this->setProtocolVersion('1.0');
 38.     }
 39. 
 40.     /**

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> __construct (line 820)
 815.                     $response instanceof JsonSerializable ||
 816.                     $response instanceof \stdClass ||
 817.                     is_array($response))) {
 818.             $response = new JsonResponse($response);
 819.         } elseif (! $response instanceof SymfonyResponse) {
 820.             $response = new Response($response, 200, ['Content-Type' => 'text/html']);
 821.         }
 822. 
 823.         if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
 824.             $response->setNotModified();
 825.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
:: toResponse (line 789)
 784.      * @param  mixed  $response
 785.      * @return \Symfony\Component\HttpFoundation\Response
 786.      */
 787.     public function prepareResponse($request, $response)
 788.     {
 789.         return static::toResponse($request, $response);
 790.     }
 791. 
 792.     /**
 793.      * Static version of prepareResponse.
 794.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> prepareResponse (line 720)
 715. 
 716.         return (new Pipeline($this->container))
 717.                         ->send($request)
 718.                         ->through($middleware)
 719.                         ->then(function ($request) use ($route) {
 720.                             return $this->prepareResponse(
 721.                                 $request, $route->run()
 722.                             );
 723.                         });
 724.     }
 725. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Routing\{closure} (line 128)
 123.      */
 124.     protected function prepareDestination(Closure $destination)
 125.     {
 126.         return function ($passable) use ($destination) {
 127.             try {
 128.                 return $destination($passable);
 129.             } catch (Throwable $e) {
 130.                 return $this->handleException($passable, $e);
 131.             }
 132.         };
 133.     }

Pipeline->Illuminate\Pipeline\{closure}() in
/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/RedirectIfAuthenticated.php
(line 24)
 19.     {
 20.         if (Auth::guard($guard)->check()) {
 21.             return redirect('/dashboard');
 22.         }
 23. 
 24.         return $next($request);
 25.     }
 26. }
 27. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

Pipeline->Illuminate\Pipeline\{closure}() in
/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/Language.php
(line 36)
 31. 
 32.         }
 33. 
 34.         app()->setLocale($locale);
 35. 
 36.         return $next($request);
 37.     }
 38. }
 39. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
-> Illuminate\Pipeline\{closure} (line 50)
 45.             }
 46. 
 47.             throw $exception;
 48.         }
 49. 
 50.         return $next($request);
 51.     }
 52. }
 53. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php
-> Illuminate\Pipeline\{closure} (line 78)
 73.             $this->isReading($request) ||
 74.             $this->runningUnitTests() ||
 75.             $this->inExceptArray($request) ||
 76.             $this->tokensMatch($request)
 77.         ) {
 78.             return tap($next($request), function ($response) use ($request) {
 79.                 if ($this->shouldAddXsrfTokenCookie()) {
 80.                     $this->addCookieToResponse($request, $response);
 81.                 }
 82.             });
 83.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php
-> Illuminate\Pipeline\{closure} (line 49)
 44. 
 45.         // Putting the errors in the view for every view allows the developer to just
 46.         // assume that some errors are always available, which is convenient since
 47.         // they don't have to continually run checks for the presence of errors.
 48. 
 49.         return $next($request);
 50.     }
 51. }
 52. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
-> Illuminate\Pipeline\{closure} (line 121)
 116.             $this->startSession($request, $session)
 117.         );
 118. 
 119.         $this->collectGarbage($session);
 120. 
 121.         $response = $next($request);
 122. 
 123.         $this->storeCurrentUrl($request, $session);
 124. 
 125.         $this->addCookieToResponse($response, $session);
 126. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
-> handleStatefulRequest (line 64)
 59.         if ($this->manager->shouldBlock() ||
 60.             ($request->route() instanceof Route && $request->route()->locksFor())) {
 61.             return $this->handleRequestWhileBlocking($request, $session, $next);
 62.         }
 63. 
 64.         return $this->handleStatefulRequest($request, $session, $next);
 65.     }
 66. 
 67.     /**
 68.      * Handle the given request within session state.
 69.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 103)
 98.      {
 99.          $pipeline = array_reduce(
 100.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 101.         );
 102. 
 103.         return $pipeline($this->passable);
 104.     }
 105. 
 106.     /**
 107.      * Run the pipeline and return the result.
 108.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> then (line 719)
 714.         $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
 715. 
 716.         return (new Pipeline($this->container))
 717.                         ->send($request)
 718.                         ->through($middleware)
 719.                         ->then(function ($request) use ($route) {
 720.                             return $this->prepareResponse(
 721.                                 $request, $route->run()
 722.                             );
 723.                         });
 724.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRouteWithinStack (line 698)
 693.         });
 694. 
 695.         $this->events->dispatch(new RouteMatched($route, $request));
 696. 
 697.         return $this->prepareResponse($request,
 698.             $this->runRouteWithinStack($route, $request)
 699.         );
 700.     }
 701. 
 702.     /**
 703.      * Run the given route within a Stack "onion" instance.

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRoute (line 662)
 657.      * @param  \Illuminate\Http\Request  $request
 658.      * @return \Symfony\Component\HttpFoundation\Response
 659.      */
 660.     public function dispatchToRoute(Request $request)
 661.     {
 662.         return $this->runRoute($request, $this->findRoute($request));
 663.     }
 664. 
 665.     /**
 666.      * Find the route matching a given request.
 667.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> dispatchToRoute (line 651)
 646.      */
 647.     public function dispatch(Request $request)
 648.     {
 649.         $this->currentRequest = $request;
 650. 
 651.         return $this->dispatchToRoute($request);
 652.     }
 653. 
 654.     /**
 655.      * Dispatch the request to a route and return the response.
 656.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> dispatch (line 167)
 162.     protected function dispatchToRouter()
 163.     {
 164.         return function ($request) {
 165.             $this->app->instance('request', $request);
 166. 
 167.             return $this->router->dispatch($request);
 168.         };
 169.     }
 170. 
 171.     /**
 172.      * Call the terminate method on any terminable middleware.

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Foundation\Http\{closure} (line 128)
 123.      */
 124.     protected function prepareDestination(Closure $destination)
 125.     {
 126.         return function ($passable) use ($destination) {
 127.             try {
 128.                 return $destination($passable);
 129.             } catch (Throwable $e) {
 130.                 return $this->handleException($passable, $e);
 131.             }
 132.         };
 133.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/fideloper/proxy/src/TrustProxies.php
-> Illuminate\Pipeline\{closure} (line 57)
 52.     public function handle(Request $request, Closure $next)
 53.     {
 54.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
 55.         $this->setTrustedProxyIpAddresses($request);
 56. 
 57.         return $next($request);
 58.     }
 59. 
 60.     /**
 61.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
 62.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 103)
 98.      {
 99.          $pipeline = array_reduce(
 100.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 101.         );
 102. 
 103.         return $pipeline($this->passable);
 104.     }
 105. 
 106.     /**
 107.      * Run the pipeline and return the result.
 108.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> then (line 142)
 137.         $this->bootstrap();
 138. 
 139.         return (new Pipeline($this->app))
 140.                     ->send($request)
 141.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
 142.                     ->then($this->dispatchToRouter());
 143.     }
 144. 
 145.     /**
 146.      * Bootstrap the application for HTTP requests.
 147.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> sendRequestThroughRouter (line 111)
 106.     public function handle($request)
 107.     {
 108.         try {
 109.             $request->enableHttpMethodParameterOverride();
 110. 
 111.             $response = $this->sendRequestThroughRouter($request);
 112.         } catch (Throwable $e) {
 113.             $this->reportException($e);
 114. 
 115.             $response = $this->renderException($request, $e);
 116.         }

Kernel->handle() in
/home/u877739372/domains/sale.digizy.store/public_html/public/index.php (line
50)
 45. $app = require_once __DIR__ . '/../bootstrap/app.php';
 46. 
 47. 
 48. $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 49. 
 50. $response = $kernel->handle(
 51.     $request = Illuminate\Http\Request::capture()
 52. );
 53. 
 54. $response->send();
 55. $kernel->terminate($request, $response);


ILLUMINATE\VIEW\ VIEWEXCEPTION

SQLSTATE[42S02]: Base table or view not found: 1146 Table
'u877739372_demo.settings' doesn't exist (SQL: select exists(select * from
`settings` where `setting_name` = app_name) as `exists`) (View:
/home/u877739372/domains/sale.digizy.store/public_html/resources/views/layouts/include/head.blade.php)

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php
(line 712)
 707. 
 708.         // If an exception occurs when attempting to run a query, we'll format the error
 709.         // message to include the bindings with SQL, which will make this exception a
 710.         // lot more helpful to the developer instead of just the database's errors.
 711.         catch (Exception $e) {
 712.             throw new QueryException(
 713.                 $query, $this->prepareBindings($bindings), $e
 714.             );
 715.         }
 716.     }
 717. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> handleViewException (line 60)
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());
 64.     }
 65. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

View->render() in
/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/8aaf2378c127fbc6c0efd2aa68c254d929ffc1de.php
(line 1)
 1. <?php echo $__env->make('layouts.include.head', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
 2. <body>
 3. 
 4. <?php $appConfig = app('App\Http\Controllers\Controller'); ?>
 5. <?php
 6.     $appDetails = config('gain');

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require (line 107)
 102.             $__data = $data;
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
:: Illuminate\Filesystem\{closure} (line 108)
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }
 113. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> getRequire (line 58)
 53. 
 54.         // We'll evaluate the contents of the view inside a try/catch block so we can
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

View->render() in
/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php
(line 8)
 3. <?php $__env->startSection('content'); ?>
 4. 
 5.     <login-form checkemail="<?php echo e($email); ?>" checkpass="<?php echo e($password); ?>"></login-form>
 6. 
 7. <?php $__env->stopSection(); ?> 
 8. <?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u877739372/domains/sale.digizy.store/public_html/resources/views/auth/login.blade.php ENDPATH**/ ?>

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require (line 107)
 102.             $__data = $data;
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
:: Illuminate\Filesystem\{closure} (line 108)
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }
 113. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> getRequire (line 58)
 53. 
 54.         // We'll evaluate the contents of the view inside a try/catch block so we can
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php
-> render (line 69)
 64. 
 65.         // If this content implements the "Renderable" interface then we will call the
 66.         // render method on the object so we will avoid any "__toString" exceptions
 67.         // that might be thrown and have their errors obscured by PHP's handling.
 68.         elseif ($content instanceof Renderable) {
 69.             $content = $content->render();
 70.         }
 71. 
 72.         parent::setContent($content);
 73. 
 74.         return $this;

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php
-> setContent (line 35)
 30.      */
 31.     public function __construct($content = '', $status = 200, array $headers = [])
 32.     {
 33.         $this->headers = new ResponseHeaderBag($headers);
 34. 
 35.         $this->setContent($content);
 36.         $this->setStatusCode($status);
 37.         $this->setProtocolVersion('1.0');
 38.     }
 39. 
 40.     /**

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> __construct (line 820)
 815.                     $response instanceof JsonSerializable ||
 816.                     $response instanceof \stdClass ||
 817.                     is_array($response))) {
 818.             $response = new JsonResponse($response);
 819.         } elseif (! $response instanceof SymfonyResponse) {
 820.             $response = new Response($response, 200, ['Content-Type' => 'text/html']);
 821.         }
 822. 
 823.         if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
 824.             $response->setNotModified();
 825.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
:: toResponse (line 789)
 784.      * @param  mixed  $response
 785.      * @return \Symfony\Component\HttpFoundation\Response
 786.      */
 787.     public function prepareResponse($request, $response)
 788.     {
 789.         return static::toResponse($request, $response);
 790.     }
 791. 
 792.     /**
 793.      * Static version of prepareResponse.
 794.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> prepareResponse (line 720)
 715. 
 716.         return (new Pipeline($this->container))
 717.                         ->send($request)
 718.                         ->through($middleware)
 719.                         ->then(function ($request) use ($route) {
 720.                             return $this->prepareResponse(
 721.                                 $request, $route->run()
 722.                             );
 723.                         });
 724.     }
 725. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Routing\{closure} (line 128)
 123.      */
 124.     protected function prepareDestination(Closure $destination)
 125.     {
 126.         return function ($passable) use ($destination) {
 127.             try {
 128.                 return $destination($passable);
 129.             } catch (Throwable $e) {
 130.                 return $this->handleException($passable, $e);
 131.             }
 132.         };
 133.     }

Pipeline->Illuminate\Pipeline\{closure}() in
/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/RedirectIfAuthenticated.php
(line 24)
 19.     {
 20.         if (Auth::guard($guard)->check()) {
 21.             return redirect('/dashboard');
 22.         }
 23. 
 24.         return $next($request);
 25.     }
 26. }
 27. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

Pipeline->Illuminate\Pipeline\{closure}() in
/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/Language.php
(line 36)
 31. 
 32.         }
 33. 
 34.         app()->setLocale($locale);
 35. 
 36.         return $next($request);
 37.     }
 38. }
 39. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
-> Illuminate\Pipeline\{closure} (line 50)
 45.             }
 46. 
 47.             throw $exception;
 48.         }
 49. 
 50.         return $next($request);
 51.     }
 52. }
 53. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php
-> Illuminate\Pipeline\{closure} (line 78)
 73.             $this->isReading($request) ||
 74.             $this->runningUnitTests() ||
 75.             $this->inExceptArray($request) ||
 76.             $this->tokensMatch($request)
 77.         ) {
 78.             return tap($next($request), function ($response) use ($request) {
 79.                 if ($this->shouldAddXsrfTokenCookie()) {
 80.                     $this->addCookieToResponse($request, $response);
 81.                 }
 82.             });
 83.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php
-> Illuminate\Pipeline\{closure} (line 49)
 44. 
 45.         // Putting the errors in the view for every view allows the developer to just
 46.         // assume that some errors are always available, which is convenient since
 47.         // they don't have to continually run checks for the presence of errors.
 48. 
 49.         return $next($request);
 50.     }
 51. }
 52. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
-> Illuminate\Pipeline\{closure} (line 121)
 116.             $this->startSession($request, $session)
 117.         );
 118. 
 119.         $this->collectGarbage($session);
 120. 
 121.         $response = $next($request);
 122. 
 123.         $this->storeCurrentUrl($request, $session);
 124. 
 125.         $this->addCookieToResponse($response, $session);
 126. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
-> handleStatefulRequest (line 64)
 59.         if ($this->manager->shouldBlock() ||
 60.             ($request->route() instanceof Route && $request->route()->locksFor())) {
 61.             return $this->handleRequestWhileBlocking($request, $session, $next);
 62.         }
 63. 
 64.         return $this->handleStatefulRequest($request, $session, $next);
 65.     }
 66. 
 67.     /**
 68.      * Handle the given request within session state.
 69.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 103)
 98.      {
 99.          $pipeline = array_reduce(
 100.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 101.         );
 102. 
 103.         return $pipeline($this->passable);
 104.     }
 105. 
 106.     /**
 107.      * Run the pipeline and return the result.
 108.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> then (line 719)
 714.         $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
 715. 
 716.         return (new Pipeline($this->container))
 717.                         ->send($request)
 718.                         ->through($middleware)
 719.                         ->then(function ($request) use ($route) {
 720.                             return $this->prepareResponse(
 721.                                 $request, $route->run()
 722.                             );
 723.                         });
 724.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRouteWithinStack (line 698)
 693.         });
 694. 
 695.         $this->events->dispatch(new RouteMatched($route, $request));
 696. 
 697.         return $this->prepareResponse($request,
 698.             $this->runRouteWithinStack($route, $request)
 699.         );
 700.     }
 701. 
 702.     /**
 703.      * Run the given route within a Stack "onion" instance.

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRoute (line 662)
 657.      * @param  \Illuminate\Http\Request  $request
 658.      * @return \Symfony\Component\HttpFoundation\Response
 659.      */
 660.     public function dispatchToRoute(Request $request)
 661.     {
 662.         return $this->runRoute($request, $this->findRoute($request));
 663.     }
 664. 
 665.     /**
 666.      * Find the route matching a given request.
 667.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> dispatchToRoute (line 651)
 646.      */
 647.     public function dispatch(Request $request)
 648.     {
 649.         $this->currentRequest = $request;
 650. 
 651.         return $this->dispatchToRoute($request);
 652.     }
 653. 
 654.     /**
 655.      * Dispatch the request to a route and return the response.
 656.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> dispatch (line 167)
 162.     protected function dispatchToRouter()
 163.     {
 164.         return function ($request) {
 165.             $this->app->instance('request', $request);
 166. 
 167.             return $this->router->dispatch($request);
 168.         };
 169.     }
 170. 
 171.     /**
 172.      * Call the terminate method on any terminable middleware.

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Foundation\Http\{closure} (line 128)
 123.      */
 124.     protected function prepareDestination(Closure $destination)
 125.     {
 126.         return function ($passable) use ($destination) {
 127.             try {
 128.                 return $destination($passable);
 129.             } catch (Throwable $e) {
 130.                 return $this->handleException($passable, $e);
 131.             }
 132.         };
 133.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/fideloper/proxy/src/TrustProxies.php
-> Illuminate\Pipeline\{closure} (line 57)
 52.     public function handle(Request $request, Closure $next)
 53.     {
 54.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
 55.         $this->setTrustedProxyIpAddresses($request);
 56. 
 57.         return $next($request);
 58.     }
 59. 
 60.     /**
 61.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
 62.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 103)
 98.      {
 99.          $pipeline = array_reduce(
 100.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 101.         );
 102. 
 103.         return $pipeline($this->passable);
 104.     }
 105. 
 106.     /**
 107.      * Run the pipeline and return the result.
 108.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> then (line 142)
 137.         $this->bootstrap();
 138. 
 139.         return (new Pipeline($this->app))
 140.                     ->send($request)
 141.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
 142.                     ->then($this->dispatchToRouter());
 143.     }
 144. 
 145.     /**
 146.      * Bootstrap the application for HTTP requests.
 147.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> sendRequestThroughRouter (line 111)
 106.     public function handle($request)
 107.     {
 108.         try {
 109.             $request->enableHttpMethodParameterOverride();
 110. 
 111.             $response = $this->sendRequestThroughRouter($request);
 112.         } catch (Throwable $e) {
 113.             $this->reportException($e);
 114. 
 115.             $response = $this->renderException($request, $e);
 116.         }

Kernel->handle() in
/home/u877739372/domains/sale.digizy.store/public_html/public/index.php (line
50)
 45. $app = require_once __DIR__ . '/../bootstrap/app.php';
 46. 
 47. 
 48. $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 49. 
 50. $response = $kernel->handle(
 51.     $request = Illuminate\Http\Request::capture()
 52. );
 53. 
 54. $response->send();
 55. $kernel->terminate($request, $response);


ILLUMINATE\DATABASE\ QUERYEXCEPTION

SQLSTATE[42S02]: Base table or view not found: 1146 Table
'u877739372_demo.settings' doesn't exist (SQL: select exists(select * from
`settings` where `setting_name` = app_name) as `exists`)

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php
(line 712)
 707. 
 708.         // If an exception occurs when attempting to run a query, we'll format the error
 709.         // message to include the bindings with SQL, which will make this exception a
 710.         // lot more helpful to the developer instead of just the database's errors.
 711.         catch (Exception $e) {
 712.             throw new QueryException(
 713.                 $query, $this->prepareBindings($bindings), $e
 714.             );
 715.         }
 716.     }
 717. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> runQueryCallback (line 672)
 667. 
 668.         // Here we will run this query. If an exception occurs we'll determine if it was
 669.         // caused by a connection that has been lost. If that is the cause, we'll try
 670.         // to re-establish connection and re-run the query with a fresh connection.
 671.         try {
 672.             $result = $this->runQueryCallback($query, $bindings, $callback);
 673.         } catch (QueryException $e) {
 674.             $result = $this->handleQueryException(
 675.                 $e, $query, $bindings, $callback
 676.             );
 677.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> run (line 359)
 354.      * @param  bool  $useReadPdo
 355.      * @return array
 356.      */
 357.     public function select($query, $bindings = [], $useReadPdo = true)
 358.     {
 359.         return $this->run($query, $bindings, function ($query, $bindings) use ($useReadPdo) {
 360.             if ($this->pretending()) {
 361.                 return [];
 362.             }
 363. 
 364.             // For select statements, we'll simply execute the query and return an array

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php
-> select (line 2735)
 2730.      */
 2731.     public function exists()
 2732.     {
 2733.         $this->applyBeforeQueryCallbacks();
 2734. 
 2735.         $results = $this->connection->select(
 2736.             $this->grammar->compileExists($this), $this->getBindings(), ! $this->useWritePdo
 2737.         );
 2738. 
 2739.         // If the results has rows, we will get the row and see if the exists column is a
 2740.         // boolean true. If there is no results for this query we will return false as

Builder->exists() in
/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/6b626943b1441bfb459b4b48cdffa034e38da155.php
(line 12)
 7.  
 8.      <!-- CSRF Token -->
 9.      <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>">
 10.     <script src="<?php echo e(asset('/js/lang')); ?>"></script>
 11.     <?php
 12.     if (config('gain.installed') && DB::table('settings')->where('setting_name', '=', 'app_name')->exists()) {
 13.         $app_name = DB::table('settings')->where('setting_name', 'app_name')->select('setting_value')->first()->setting_value;
 14.     } else {
 15.         $app_name = "";
 16.     }
 17. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require (line 107)
 102.             $__data = $data;
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
:: Illuminate\Filesystem\{closure} (line 108)
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }
 113. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> getRequire (line 58)
 53. 
 54.         // We'll evaluate the contents of the view inside a try/catch block so we can
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

View->render() in
/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/8aaf2378c127fbc6c0efd2aa68c254d929ffc1de.php
(line 1)
 1. <?php echo $__env->make('layouts.include.head', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
 2. <body>
 3. 
 4. <?php $appConfig = app('App\Http\Controllers\Controller'); ?>
 5. <?php
 6.     $appDetails = config('gain');

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require (line 107)
 102.             $__data = $data;
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
:: Illuminate\Filesystem\{closure} (line 108)
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }
 113. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> getRequire (line 58)
 53. 
 54.         // We'll evaluate the contents of the view inside a try/catch block so we can
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

View->render() in
/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php
(line 8)
 3. <?php $__env->startSection('content'); ?>
 4. 
 5.     <login-form checkemail="<?php echo e($email); ?>" checkpass="<?php echo e($password); ?>"></login-form>
 6. 
 7. <?php $__env->stopSection(); ?> 
 8. <?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u877739372/domains/sale.digizy.store/public_html/resources/views/auth/login.blade.php ENDPATH**/ ?>

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require (line 107)
 102.             $__data = $data;
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
:: Illuminate\Filesystem\{closure} (line 108)
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }
 113. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> getRequire (line 58)
 53. 
 54.         // We'll evaluate the contents of the view inside a try/catch block so we can
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php
-> render (line 69)
 64. 
 65.         // If this content implements the "Renderable" interface then we will call the
 66.         // render method on the object so we will avoid any "__toString" exceptions
 67.         // that might be thrown and have their errors obscured by PHP's handling.
 68.         elseif ($content instanceof Renderable) {
 69.             $content = $content->render();
 70.         }
 71. 
 72.         parent::setContent($content);
 73. 
 74.         return $this;

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php
-> setContent (line 35)
 30.      */
 31.     public function __construct($content = '', $status = 200, array $headers = [])
 32.     {
 33.         $this->headers = new ResponseHeaderBag($headers);
 34. 
 35.         $this->setContent($content);
 36.         $this->setStatusCode($status);
 37.         $this->setProtocolVersion('1.0');
 38.     }
 39. 
 40.     /**

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> __construct (line 820)
 815.                     $response instanceof JsonSerializable ||
 816.                     $response instanceof \stdClass ||
 817.                     is_array($response))) {
 818.             $response = new JsonResponse($response);
 819.         } elseif (! $response instanceof SymfonyResponse) {
 820.             $response = new Response($response, 200, ['Content-Type' => 'text/html']);
 821.         }
 822. 
 823.         if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
 824.             $response->setNotModified();
 825.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
:: toResponse (line 789)
 784.      * @param  mixed  $response
 785.      * @return \Symfony\Component\HttpFoundation\Response
 786.      */
 787.     public function prepareResponse($request, $response)
 788.     {
 789.         return static::toResponse($request, $response);
 790.     }
 791. 
 792.     /**
 793.      * Static version of prepareResponse.
 794.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> prepareResponse (line 720)
 715. 
 716.         return (new Pipeline($this->container))
 717.                         ->send($request)
 718.                         ->through($middleware)
 719.                         ->then(function ($request) use ($route) {
 720.                             return $this->prepareResponse(
 721.                                 $request, $route->run()
 722.                             );
 723.                         });
 724.     }
 725. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Routing\{closure} (line 128)
 123.      */
 124.     protected function prepareDestination(Closure $destination)
 125.     {
 126.         return function ($passable) use ($destination) {
 127.             try {
 128.                 return $destination($passable);
 129.             } catch (Throwable $e) {
 130.                 return $this->handleException($passable, $e);
 131.             }
 132.         };
 133.     }

Pipeline->Illuminate\Pipeline\{closure}() in
/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/RedirectIfAuthenticated.php
(line 24)
 19.     {
 20.         if (Auth::guard($guard)->check()) {
 21.             return redirect('/dashboard');
 22.         }
 23. 
 24.         return $next($request);
 25.     }
 26. }
 27. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

Pipeline->Illuminate\Pipeline\{closure}() in
/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/Language.php
(line 36)
 31. 
 32.         }
 33. 
 34.         app()->setLocale($locale);
 35. 
 36.         return $next($request);
 37.     }
 38. }
 39. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
-> Illuminate\Pipeline\{closure} (line 50)
 45.             }
 46. 
 47.             throw $exception;
 48.         }
 49. 
 50.         return $next($request);
 51.     }
 52. }
 53. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php
-> Illuminate\Pipeline\{closure} (line 78)
 73.             $this->isReading($request) ||
 74.             $this->runningUnitTests() ||
 75.             $this->inExceptArray($request) ||
 76.             $this->tokensMatch($request)
 77.         ) {
 78.             return tap($next($request), function ($response) use ($request) {
 79.                 if ($this->shouldAddXsrfTokenCookie()) {
 80.                     $this->addCookieToResponse($request, $response);
 81.                 }
 82.             });
 83.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php
-> Illuminate\Pipeline\{closure} (line 49)
 44. 
 45.         // Putting the errors in the view for every view allows the developer to just
 46.         // assume that some errors are always available, which is convenient since
 47.         // they don't have to continually run checks for the presence of errors.
 48. 
 49.         return $next($request);
 50.     }
 51. }
 52. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
-> Illuminate\Pipeline\{closure} (line 121)
 116.             $this->startSession($request, $session)
 117.         );
 118. 
 119.         $this->collectGarbage($session);
 120. 
 121.         $response = $next($request);
 122. 
 123.         $this->storeCurrentUrl($request, $session);
 124. 
 125.         $this->addCookieToResponse($response, $session);
 126. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
-> handleStatefulRequest (line 64)
 59.         if ($this->manager->shouldBlock() ||
 60.             ($request->route() instanceof Route && $request->route()->locksFor())) {
 61.             return $this->handleRequestWhileBlocking($request, $session, $next);
 62.         }
 63. 
 64.         return $this->handleStatefulRequest($request, $session, $next);
 65.     }
 66. 
 67.     /**
 68.      * Handle the given request within session state.
 69.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 103)
 98.      {
 99.          $pipeline = array_reduce(
 100.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 101.         );
 102. 
 103.         return $pipeline($this->passable);
 104.     }
 105. 
 106.     /**
 107.      * Run the pipeline and return the result.
 108.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> then (line 719)
 714.         $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
 715. 
 716.         return (new Pipeline($this->container))
 717.                         ->send($request)
 718.                         ->through($middleware)
 719.                         ->then(function ($request) use ($route) {
 720.                             return $this->prepareResponse(
 721.                                 $request, $route->run()
 722.                             );
 723.                         });
 724.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRouteWithinStack (line 698)
 693.         });
 694. 
 695.         $this->events->dispatch(new RouteMatched($route, $request));
 696. 
 697.         return $this->prepareResponse($request,
 698.             $this->runRouteWithinStack($route, $request)
 699.         );
 700.     }
 701. 
 702.     /**
 703.      * Run the given route within a Stack "onion" instance.

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRoute (line 662)
 657.      * @param  \Illuminate\Http\Request  $request
 658.      * @return \Symfony\Component\HttpFoundation\Response
 659.      */
 660.     public function dispatchToRoute(Request $request)
 661.     {
 662.         return $this->runRoute($request, $this->findRoute($request));
 663.     }
 664. 
 665.     /**
 666.      * Find the route matching a given request.
 667.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> dispatchToRoute (line 651)
 646.      */
 647.     public function dispatch(Request $request)
 648.     {
 649.         $this->currentRequest = $request;
 650. 
 651.         return $this->dispatchToRoute($request);
 652.     }
 653. 
 654.     /**
 655.      * Dispatch the request to a route and return the response.
 656.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> dispatch (line 167)
 162.     protected function dispatchToRouter()
 163.     {
 164.         return function ($request) {
 165.             $this->app->instance('request', $request);
 166. 
 167.             return $this->router->dispatch($request);
 168.         };
 169.     }
 170. 
 171.     /**
 172.      * Call the terminate method on any terminable middleware.

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Foundation\Http\{closure} (line 128)
 123.      */
 124.     protected function prepareDestination(Closure $destination)
 125.     {
 126.         return function ($passable) use ($destination) {
 127.             try {
 128.                 return $destination($passable);
 129.             } catch (Throwable $e) {
 130.                 return $this->handleException($passable, $e);
 131.             }
 132.         };
 133.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/fideloper/proxy/src/TrustProxies.php
-> Illuminate\Pipeline\{closure} (line 57)
 52.     public function handle(Request $request, Closure $next)
 53.     {
 54.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
 55.         $this->setTrustedProxyIpAddresses($request);
 56. 
 57.         return $next($request);
 58.     }
 59. 
 60.     /**
 61.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
 62.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 103)
 98.      {
 99.          $pipeline = array_reduce(
 100.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 101.         );
 102. 
 103.         return $pipeline($this->passable);
 104.     }
 105. 
 106.     /**
 107.      * Run the pipeline and return the result.
 108.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> then (line 142)
 137.         $this->bootstrap();
 138. 
 139.         return (new Pipeline($this->app))
 140.                     ->send($request)
 141.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
 142.                     ->then($this->dispatchToRouter());
 143.     }
 144. 
 145.     /**
 146.      * Bootstrap the application for HTTP requests.
 147.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> sendRequestThroughRouter (line 111)
 106.     public function handle($request)
 107.     {
 108.         try {
 109.             $request->enableHttpMethodParameterOverride();
 110. 
 111.             $response = $this->sendRequestThroughRouter($request);
 112.         } catch (Throwable $e) {
 113.             $this->reportException($e);
 114. 
 115.             $response = $this->renderException($request, $e);
 116.         }

Kernel->handle() in
/home/u877739372/domains/sale.digizy.store/public_html/public/index.php (line
50)
 45. $app = require_once __DIR__ . '/../bootstrap/app.php';
 46. 
 47. 
 48. $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 49. 
 50. $response = $kernel->handle(
 51.     $request = Illuminate\Http\Request::capture()
 52. );
 53. 
 54. $response->send();
 55. $kernel->terminate($request, $response);


PDOEXCEPTION

SQLSTATE[42S02]: Base table or view not found: 1146 Table
'u877739372_demo.settings' doesn't exist

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php
(line 368)
 363. 
 364.             // For select statements, we'll simply execute the query and return an array
 365.             // of the database result set. Each element in the array will be a single
 366.             // row from the database table, and will either be an array or objects.
 367.             $statement = $this->prepared(
 368.                 $this->getPdoForSelect($useReadPdo)->prepare($query)
 369.             );
 370. 
 371.             $this->bindValues($statement, $this->prepareBindings($bindings));
 372. 
 373.             $statement->execute();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> prepare (line 368)
 363. 
 364.             // For select statements, we'll simply execute the query and return an array
 365.             // of the database result set. Each element in the array will be a single
 366.             // row from the database table, and will either be an array or objects.
 367.             $statement = $this->prepared(
 368.                 $this->getPdoForSelect($useReadPdo)->prepare($query)
 369.             );
 370. 
 371.             $this->bindValues($statement, $this->prepareBindings($bindings));
 372. 
 373.             $statement->execute();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> Illuminate\Database\{closure} (line 705)
 700.     {
 701.         // To execute the statement, we'll simply call the callback, which will actually
 702.         // run the SQL against the PDO connection. Then we can calculate the time it
 703.         // took to execute and log the query SQL, bindings and time in our memory.
 704.         try {
 705.             return $callback($query, $bindings);
 706.         }
 707. 
 708.         // If an exception occurs when attempting to run a query, we'll format the error
 709.         // message to include the bindings with SQL, which will make this exception a
 710.         // lot more helpful to the developer instead of just the database's errors.

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> runQueryCallback (line 672)
 667. 
 668.         // Here we will run this query. If an exception occurs we'll determine if it was
 669.         // caused by a connection that has been lost. If that is the cause, we'll try
 670.         // to re-establish connection and re-run the query with a fresh connection.
 671.         try {
 672.             $result = $this->runQueryCallback($query, $bindings, $callback);
 673.         } catch (QueryException $e) {
 674.             $result = $this->handleQueryException(
 675.                 $e, $query, $bindings, $callback
 676.             );
 677.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php
-> run (line 359)
 354.      * @param  bool  $useReadPdo
 355.      * @return array
 356.      */
 357.     public function select($query, $bindings = [], $useReadPdo = true)
 358.     {
 359.         return $this->run($query, $bindings, function ($query, $bindings) use ($useReadPdo) {
 360.             if ($this->pretending()) {
 361.                 return [];
 362.             }
 363. 
 364.             // For select statements, we'll simply execute the query and return an array

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php
-> select (line 2735)
 2730.      */
 2731.     public function exists()
 2732.     {
 2733.         $this->applyBeforeQueryCallbacks();
 2734. 
 2735.         $results = $this->connection->select(
 2736.             $this->grammar->compileExists($this), $this->getBindings(), ! $this->useWritePdo
 2737.         );
 2738. 
 2739.         // If the results has rows, we will get the row and see if the exists column is a
 2740.         // boolean true. If there is no results for this query we will return false as

Builder->exists() in
/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/6b626943b1441bfb459b4b48cdffa034e38da155.php
(line 12)
 7.  
 8.      <!-- CSRF Token -->
 9.      <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>">
 10.     <script src="<?php echo e(asset('/js/lang')); ?>"></script>
 11.     <?php
 12.     if (config('gain.installed') && DB::table('settings')->where('setting_name', '=', 'app_name')->exists()) {
 13.         $app_name = DB::table('settings')->where('setting_name', 'app_name')->select('setting_value')->first()->setting_value;
 14.     } else {
 15.         $app_name = "";
 16.     }
 17. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require (line 107)
 102.             $__data = $data;
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
:: Illuminate\Filesystem\{closure} (line 108)
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }
 113. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> getRequire (line 58)
 53. 
 54.         // We'll evaluate the contents of the view inside a try/catch block so we can
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

View->render() in
/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/8aaf2378c127fbc6c0efd2aa68c254d929ffc1de.php
(line 1)
 1. <?php echo $__env->make('layouts.include.head', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
 2. <body>
 3. 
 4. <?php $appConfig = app('App\Http\Controllers\Controller'); ?>
 5. <?php
 6.     $appDetails = config('gain');

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require (line 107)
 102.             $__data = $data;
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
:: Illuminate\Filesystem\{closure} (line 108)
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }
 113. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> getRequire (line 58)
 53. 
 54.         // We'll evaluate the contents of the view inside a try/catch block so we can
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

View->render() in
/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php
(line 8)
 3. <?php $__env->startSection('content'); ?>
 4. 
 5.     <login-form checkemail="<?php echo e($email); ?>" checkpass="<?php echo e($password); ?>"></login-form>
 6. 
 7. <?php $__env->stopSection(); ?> 
 8. <?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u877739372/domains/sale.digizy.store/public_html/resources/views/auth/login.blade.php ENDPATH**/ ?>

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require (line 107)
 102.             $__data = $data;
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
:: Illuminate\Filesystem\{closure} (line 108)
 103. 
 104.             return (static function () use ($__path, $__data) {
 105.                 extract($__data, EXTR_SKIP);
 106. 
 107.                 return require $__path;
 108.             })();
 109.         }
 110. 
 111.         throw new FileNotFoundException("File does not exist at path {$path}.");
 112.     }
 113. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
-> getRequire (line 58)
 53. 
 54.         // We'll evaluate the contents of the view inside a try/catch block so we can
 55.         // flush out any stray output that might get out before an error occurs or
 56.         // an exception is thrown. This prevents any partial views from leaking.
 57.         try {
 58.             $this->files->getRequire($path, $data);
 59.         } catch (Throwable $e) {
 60.             $this->handleViewException($e, $obLevel);
 61.         }
 62. 
 63.         return ltrim(ob_get_clean());

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
-> evaluatePath (line 61)
 56.         }
 57. 
 58.         // Once we have the path to the compiled file, we will evaluate the paths with
 59.         // typical PHP just like any other templates. We also keep a stack of views
 60.         // which have been rendered for right exception messages to be generated.
 61.         $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
 62. 
 63.         array_pop($this->lastCompiled);
 64. 
 65.         return $results;
 66.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> get (line 139)
 134.      *
 135.      * @return string
 136.      */
 137.     protected function getContents()
 138.     {
 139.         return $this->engine->get($this->path, $this->gatherData());
 140.     }
 141. 
 142.     /**
 143.      * Get the data bound to the view instance.
 144.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> getContents (line 122)
 117.         // clear out the sections for any separate views that may be rendered.
 118.         $this->factory->incrementRender();
 119. 
 120.         $this->factory->callComposer($this);
 121. 
 122.         $contents = $this->getContents();
 123. 
 124.         // Once we've finished rendering the view, we'll decrement the render count
 125.         // so that each sections get flushed out next time a view is created and
 126.         // no old sections are staying around in the memory of an environment.
 127.         $this->factory->decrementRender();

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php
-> renderContents (line 91)
 86.      * @throws \Throwable
 87.      */
 88.     public function render(callable $callback = null)
 89.     {
 90.         try {
 91.             $contents = $this->renderContents();
 92. 
 93.             $response = isset($callback) ? $callback($this, $contents) : null;
 94. 
 95.             // Once we have the contents of the view, we will flush the sections if we are
 96.             // done rendering all views so that there is nothing left hanging over when

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php
-> render (line 69)
 64. 
 65.         // If this content implements the "Renderable" interface then we will call the
 66.         // render method on the object so we will avoid any "__toString" exceptions
 67.         // that might be thrown and have their errors obscured by PHP's handling.
 68.         elseif ($content instanceof Renderable) {
 69.             $content = $content->render();
 70.         }
 71. 
 72.         parent::setContent($content);
 73. 
 74.         return $this;

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php
-> setContent (line 35)
 30.      */
 31.     public function __construct($content = '', $status = 200, array $headers = [])
 32.     {
 33.         $this->headers = new ResponseHeaderBag($headers);
 34. 
 35.         $this->setContent($content);
 36.         $this->setStatusCode($status);
 37.         $this->setProtocolVersion('1.0');
 38.     }
 39. 
 40.     /**

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> __construct (line 820)
 815.                     $response instanceof JsonSerializable ||
 816.                     $response instanceof \stdClass ||
 817.                     is_array($response))) {
 818.             $response = new JsonResponse($response);
 819.         } elseif (! $response instanceof SymfonyResponse) {
 820.             $response = new Response($response, 200, ['Content-Type' => 'text/html']);
 821.         }
 822. 
 823.         if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {
 824.             $response->setNotModified();
 825.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
:: toResponse (line 789)
 784.      * @param  mixed  $response
 785.      * @return \Symfony\Component\HttpFoundation\Response
 786.      */
 787.     public function prepareResponse($request, $response)
 788.     {
 789.         return static::toResponse($request, $response);
 790.     }
 791. 
 792.     /**
 793.      * Static version of prepareResponse.
 794.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> prepareResponse (line 720)
 715. 
 716.         return (new Pipeline($this->container))
 717.                         ->send($request)
 718.                         ->through($middleware)
 719.                         ->then(function ($request) use ($route) {
 720.                             return $this->prepareResponse(
 721.                                 $request, $route->run()
 722.                             );
 723.                         });
 724.     }
 725. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Routing\{closure} (line 128)
 123.      */
 124.     protected function prepareDestination(Closure $destination)
 125.     {
 126.         return function ($passable) use ($destination) {
 127.             try {
 128.                 return $destination($passable);
 129.             } catch (Throwable $e) {
 130.                 return $this->handleException($passable, $e);
 131.             }
 132.         };
 133.     }

Pipeline->Illuminate\Pipeline\{closure}() in
/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/RedirectIfAuthenticated.php
(line 24)
 19.     {
 20.         if (Auth::guard($guard)->check()) {
 21.             return redirect('/dashboard');
 22.         }
 23. 
 24.         return $next($request);
 25.     }
 26. }
 27. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

Pipeline->Illuminate\Pipeline\{closure}() in
/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/Language.php
(line 36)
 31. 
 32.         }
 33. 
 34.         app()->setLocale($locale);
 35. 
 36.         return $next($request);
 37.     }
 38. }
 39. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
-> Illuminate\Pipeline\{closure} (line 50)
 45.             }
 46. 
 47.             throw $exception;
 48.         }
 49. 
 50.         return $next($request);
 51.     }
 52. }
 53. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php
-> Illuminate\Pipeline\{closure} (line 78)
 73.             $this->isReading($request) ||
 74.             $this->runningUnitTests() ||
 75.             $this->inExceptArray($request) ||
 76.             $this->tokensMatch($request)
 77.         ) {
 78.             return tap($next($request), function ($response) use ($request) {
 79.                 if ($this->shouldAddXsrfTokenCookie()) {
 80.                     $this->addCookieToResponse($request, $response);
 81.                 }
 82.             });
 83.         }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php
-> Illuminate\Pipeline\{closure} (line 49)
 44. 
 45.         // Putting the errors in the view for every view allows the developer to just
 46.         // assume that some errors are always available, which is convenient since
 47.         // they don't have to continually run checks for the presence of errors.
 48. 
 49.         return $next($request);
 50.     }
 51. }
 52. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
-> Illuminate\Pipeline\{closure} (line 121)
 116.             $this->startSession($request, $session)
 117.         );
 118. 
 119.         $this->collectGarbage($session);
 120. 
 121.         $response = $next($request);
 122. 
 123.         $this->storeCurrentUrl($request, $session);
 124. 
 125.         $this->addCookieToResponse($response, $session);
 126. 

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
-> handleStatefulRequest (line 64)
 59.         if ($this->manager->shouldBlock() ||
 60.             ($request->route() instanceof Route && $request->route()->locksFor())) {
 61.             return $this->handleRequestWhileBlocking($request, $session, $next);
 62.         }
 63. 
 64.         return $this->handleStatefulRequest($request, $session, $next);
 65.     }
 66. 
 67.     /**
 68.      * Handle the given request within session state.
 69.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 103)
 98.      {
 99.          $pipeline = array_reduce(
 100.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 101.         );
 102. 
 103.         return $pipeline($this->passable);
 104.     }
 105. 
 106.     /**
 107.      * Run the pipeline and return the result.
 108.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> then (line 719)
 714.         $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
 715. 
 716.         return (new Pipeline($this->container))
 717.                         ->send($request)
 718.                         ->through($middleware)
 719.                         ->then(function ($request) use ($route) {
 720.                             return $this->prepareResponse(
 721.                                 $request, $route->run()
 722.                             );
 723.                         });
 724.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRouteWithinStack (line 698)
 693.         });
 694. 
 695.         $this->events->dispatch(new RouteMatched($route, $request));
 696. 
 697.         return $this->prepareResponse($request,
 698.             $this->runRouteWithinStack($route, $request)
 699.         );
 700.     }
 701. 
 702.     /**
 703.      * Run the given route within a Stack "onion" instance.

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> runRoute (line 662)
 657.      * @param  \Illuminate\Http\Request  $request
 658.      * @return \Symfony\Component\HttpFoundation\Response
 659.      */
 660.     public function dispatchToRoute(Request $request)
 661.     {
 662.         return $this->runRoute($request, $this->findRoute($request));
 663.     }
 664. 
 665.     /**
 666.      * Find the route matching a given request.
 667.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php
-> dispatchToRoute (line 651)
 646.      */
 647.     public function dispatch(Request $request)
 648.     {
 649.         $this->currentRequest = $request;
 650. 
 651.         return $this->dispatchToRoute($request);
 652.     }
 653. 
 654.     /**
 655.      * Dispatch the request to a route and return the response.
 656.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> dispatch (line 167)
 162.     protected function dispatchToRouter()
 163.     {
 164.         return function ($request) {
 165.             $this->app->instance('request', $request);
 166. 
 167.             return $this->router->dispatch($request);
 168.         };
 169.     }
 170. 
 171.     /**
 172.      * Call the terminate method on any terminable middleware.

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Foundation\Http\{closure} (line 128)
 123.      */
 124.     protected function prepareDestination(Closure $destination)
 125.     {
 126.         return function ($passable) use ($destination) {
 127.             try {
 128.                 return $destination($passable);
 129.             } catch (Throwable $e) {
 130.                 return $this->handleException($passable, $e);
 131.             }
 132.         };
 133.     }

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/fideloper/proxy/src/TrustProxies.php
-> Illuminate\Pipeline\{closure} (line 57)
 52.     public function handle(Request $request, Closure $next)
 53.     {
 54.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
 55.         $this->setTrustedProxyIpAddresses($request);
 56. 
 57.         return $next($request);
 58.     }
 59. 
 60.     /**
 61.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
 62.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/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/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> handle (line 167)
 162.                         // since the object we're given was already a fully instantiated object.
 163.                         $parameters = [$passable, $stack];
 164.                     }
 165. 
 166.                     $carry = method_exists($pipe, $this->method)
 167.                                     ? $pipe->{$this->method}(...$parameters)
 168.                                     : $pipe(...$parameters);
 169. 
 170.                     return $this->handleCarry($carry);
 171.                 } catch (Throwable $e) {
 172.                     return $this->handleException($passable, $e);

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
-> Illuminate\Pipeline\{closure} (line 103)
 98.      {
 99.          $pipeline = array_reduce(
 100.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
 101.         );
 102. 
 103.         return $pipeline($this->passable);
 104.     }
 105. 
 106.     /**
 107.      * Run the pipeline and return the result.
 108.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> then (line 142)
 137.         $this->bootstrap();
 138. 
 139.         return (new Pipeline($this->app))
 140.                     ->send($request)
 141.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
 142.                     ->then($this->dispatchToRouter());
 143.     }
 144. 
 145.     /**
 146.      * Bootstrap the application for HTTP requests.
 147.      *

in
/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> sendRequestThroughRouter (line 111)
 106.     public function handle($request)
 107.     {
 108.         try {
 109.             $request->enableHttpMethodParameterOverride();
 110. 
 111.             $response = $this->sendRequestThroughRouter($request);
 112.         } catch (Throwable $e) {
 113.             $this->reportException($e);
 114. 
 115.             $response = $this->renderException($request, $e);
 116.         }

Kernel->handle() in
/home/u877739372/domains/sale.digizy.store/public_html/public/index.php (line
50)
 45. $app = require_once __DIR__ . '/../bootstrap/app.php';
 46. 
 47. 
 48. $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 49. 
 50. $response = $kernel->handle(
 51.     $request = Illuminate\Http\Request::capture()
 52. );
 53. 
 54. $response->send();
 55. $kernel->terminate($request, $response);


STACK TRACES 5

[5/5] ViewException

Illuminate\View\ViewException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'u877739372_demo.settings' doesn't exist (SQL: select exists(select * from `settings` where `setting_name` = app_name) as `exists`) (View: /home/u877739372/domains/sale.digizy.store/public_html/resources/views/layouts/include/head.blade.php) (View: /home/u877739372/domains/sale.digizy.store/public_html/resources/views/layouts/include/head.blade.php) (View: /home/u877739372/domains/sale.digizy.store/public_html/resources/views/layouts/include/head.blade.php)

  at /home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:820)
  at Illuminate\Routing\Router::toResponse()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:789)
  at Illuminate\Routing\Router->prepareResponse()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:720)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/RedirectIfAuthenticated.php:24)
  at App\Http\Middleware\RedirectIfAuthenticated->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/Language.php:36)
  at App\Http\Middleware\Language->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:719)
  at Illuminate\Routing\Router->runRouteWithinStack()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:698)
  at Illuminate\Routing\Router->runRoute()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->dispatchToRoute()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:651)
  at Illuminate\Routing\Router->dispatch()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:167)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/public/index.php:50)                

[4/5] ViewException

Illuminate\View\ViewException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'u877739372_demo.settings' doesn't exist (SQL: select exists(select * from `settings` where `setting_name` = app_name) as `exists`) (View: /home/u877739372/domains/sale.digizy.store/public_html/resources/views/layouts/include/head.blade.php) (View: /home/u877739372/domains/sale.digizy.store/public_html/resources/views/layouts/include/head.blade.php)

  at /home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php:8)
  at require('/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php')
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:820)
  at Illuminate\Routing\Router::toResponse()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:789)
  at Illuminate\Routing\Router->prepareResponse()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:720)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/RedirectIfAuthenticated.php:24)
  at App\Http\Middleware\RedirectIfAuthenticated->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/Language.php:36)
  at App\Http\Middleware\Language->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:719)
  at Illuminate\Routing\Router->runRouteWithinStack()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:698)
  at Illuminate\Routing\Router->runRoute()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->dispatchToRoute()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:651)
  at Illuminate\Routing\Router->dispatch()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:167)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/public/index.php:50)                

[3/5] ViewException

Illuminate\View\ViewException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'u877739372_demo.settings' doesn't exist (SQL: select exists(select * from `settings` where `setting_name` = app_name) as `exists`) (View: /home/u877739372/domains/sale.digizy.store/public_html/resources/views/layouts/include/head.blade.php)

  at /home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712
  at Illuminate\View\Engines\CompilerEngine->handleViewException()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/8aaf2378c127fbc6c0efd2aa68c254d929ffc1de.php:1)
  at require('/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/8aaf2378c127fbc6c0efd2aa68c254d929ffc1de.php')
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php:8)
  at require('/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php')
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:820)
  at Illuminate\Routing\Router::toResponse()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:789)
  at Illuminate\Routing\Router->prepareResponse()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:720)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/RedirectIfAuthenticated.php:24)
  at App\Http\Middleware\RedirectIfAuthenticated->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/Language.php:36)
  at App\Http\Middleware\Language->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:719)
  at Illuminate\Routing\Router->runRouteWithinStack()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:698)
  at Illuminate\Routing\Router->runRoute()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->dispatchToRoute()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:651)
  at Illuminate\Routing\Router->dispatch()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:167)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/public/index.php:50)                

[2/5] QueryException

Illuminate\Database\QueryException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'u877739372_demo.settings' doesn't exist (SQL: select exists(select * from `settings` where `setting_name` = app_name) as `exists`)

  at /home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:712
  at Illuminate\Database\Connection->runQueryCallback()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:672)
  at Illuminate\Database\Connection->run()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:359)
  at Illuminate\Database\Connection->select()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2735)
  at Illuminate\Database\Query\Builder->exists()
     (/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/6b626943b1441bfb459b4b48cdffa034e38da155.php:12)
  at require('/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/6b626943b1441bfb459b4b48cdffa034e38da155.php')
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/8aaf2378c127fbc6c0efd2aa68c254d929ffc1de.php:1)
  at require('/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/8aaf2378c127fbc6c0efd2aa68c254d929ffc1de.php')
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php:8)
  at require('/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php')
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:820)
  at Illuminate\Routing\Router::toResponse()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:789)
  at Illuminate\Routing\Router->prepareResponse()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:720)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/RedirectIfAuthenticated.php:24)
  at App\Http\Middleware\RedirectIfAuthenticated->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/Language.php:36)
  at App\Http\Middleware\Language->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:719)
  at Illuminate\Routing\Router->runRouteWithinStack()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:698)
  at Illuminate\Routing\Router->runRoute()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->dispatchToRoute()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:651)
  at Illuminate\Routing\Router->dispatch()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:167)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/public/index.php:50)                

[1/5] PDOException

PDOException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'u877739372_demo.settings' doesn't exist

  at /home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:368
  at PDO->prepare()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:368)
  at Illuminate\Database\Connection->Illuminate\Database\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:705)
  at Illuminate\Database\Connection->runQueryCallback()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:672)
  at Illuminate\Database\Connection->run()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:359)
  at Illuminate\Database\Connection->select()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2735)
  at Illuminate\Database\Query\Builder->exists()
     (/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/6b626943b1441bfb459b4b48cdffa034e38da155.php:12)
  at require('/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/6b626943b1441bfb459b4b48cdffa034e38da155.php')
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/8aaf2378c127fbc6c0efd2aa68c254d929ffc1de.php:1)
  at require('/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/8aaf2378c127fbc6c0efd2aa68c254d929ffc1de.php')
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php:8)
  at require('/home/u877739372/domains/sale.digizy.store/public_html/storage/framework/views/d67f378b195b08f881df936bb0d82ccdf1b8c15e.php')
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:107)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:108)
  at Illuminate\Filesystem\Filesystem->getRequire()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:61)
  at Illuminate\View\Engines\CompilerEngine->get()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:139)
  at Illuminate\View\View->getContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:122)
  at Illuminate\View\View->renderContents()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:91)
  at Illuminate\View\View->render()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
  at Illuminate\Http\Response->setContent()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
  at Illuminate\Http\Response->__construct()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:820)
  at Illuminate\Routing\Router::toResponse()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:789)
  at Illuminate\Routing\Router->prepareResponse()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:720)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/RedirectIfAuthenticated.php:24)
  at App\Http\Middleware\RedirectIfAuthenticated->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/app/Http/Middleware/Language.php:36)
  at App\Http\Middleware\Language->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:719)
  at Illuminate\Routing\Router->runRouteWithinStack()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:698)
  at Illuminate\Routing\Router->runRoute()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->dispatchToRoute()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:651)
  at Illuminate\Routing\Router->dispatch()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:167)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/u877739372/domains/sale.digizy.store/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/u877739372/domains/sale.digizy.store/public_html/public/index.php:50)