Symfony Exception

MissingAppKeyException

HTTP 500 Internal Server Error

No application encryption key has been specified.

Exception

Illuminate\Encryption\ MissingAppKeyException

  1.      */
  2.     protected function key(array $config)
  3.     {
  4.         return tap($config['key'], function ($key) {
  5.             if (empty($key)) {
  6.                 throw new MissingAppKeyException;
  7.             }
  8.         });
  9.     }
  10. }
  1.     {
  2.         if (is_null($callback)) {
  3.             return new HigherOrderTapProxy($value);
  4.         }
  5.         $callback($value);
  6.         return $value;
  7.     }
  8. }
  1.      *
  2.      * @throws \Illuminate\Encryption\MissingAppKeyException
  3.      */
  4.     protected function key(array $config)
  5.     {
  6.         return tap($config['key'], function ($key) {
  7.             if (empty($key)) {
  8.                 throw new MissingAppKeyException;
  9.             }
  10.         });
  11.     }
  1.      * @param  array  $config
  2.      * @return string
  3.      */
  4.     protected function parseKey(array $config)
  5.     {
  6.         if (Str::startsWith($key $this->key($config), $prefix 'base64:')) {
  7.             $key base64_decode(Str::after($key$prefix));
  8.         }
  9.         return $key;
  10.     }
  1.     protected function registerEncrypter()
  2.     {
  3.         $this->app->singleton('encrypter', function ($app) {
  4.             $config $app->make('config')->get('app');
  5.             return new Encrypter($this->parseKey($config), $config['cipher']);
  6.         });
  7.     }
  8.     /**
  9.      * Configure Serializable Closure signing for security.
  1.     {
  2.         // If the concrete type is actually a Closure, we will just execute it and
  3.         // hand back the results of the functions, which allows functions to be
  4.         // used as resolvers for more fine-tuned resolution of these objects.
  5.         if ($concrete instanceof Closure) {
  6.             return $concrete($this$this->getLastParameterOverride());
  7.         }
  8.         try {
  9.             $reflector = new ReflectionClass($concrete);
  10.         } catch (ReflectionException $e) {
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.     protected function resolveClass(ReflectionParameter $parameter)
  2.     {
  3.         try {
  4.             return $parameter->isVariadic()
  5.                         ? $this->resolveVariadicClass($parameter)
  6.                         : $this->make(Util::getParameterClassName($parameter));
  7.         }
  8.         // If we can not resolve the class instance, we will check to see if the value
  9.         // is optional, and if it is we will return the optional parameter value as
  10.         // the value of the dependency, similarly to how we do this with scalars.
  1.             // If the class is null, it means the dependency is a string or some other
  2.             // primitive type which we can not resolve since it is not a class and
  3.             // we will just bomb out with an error since we have no-where to go.
  4.             $result is_null(Util::getParameterClassName($dependency))
  5.                             ? $this->resolvePrimitive($dependency)
  6.                             : $this->resolveClass($dependency);
  7.             if ($dependency->isVariadic()) {
  8.                 $results array_merge($results$result);
  9.             } else {
  10.                 $results[] = $result;
  1.         // Once we have all the constructor's parameters we can create each of the
  2.         // dependency instances and then use the reflection instances to make a
  3.         // new instance of this class, injecting the created dependencies in.
  4.         try {
  5.             $instances $this->resolveDependencies($dependencies);
  6.         } catch (BindingResolutionException $e) {
  7.             array_pop($this->buildStack);
  8.             throw $e;
  9.         }
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.                         [$name$parameters] = $this->parsePipeString($pipe);
  2.                         // If the pipe is a string we will parse the string and resolve the class out
  3.                         // of the dependency injection container. We can then build a callable and
  4.                         // execute the pipe function giving in the parameters that are required.
  5.                         $pipe $this->getContainer()->make($name);
  6.                         $parameters array_merge([$passable$stack], $parameters);
  7.                     } else {
  8.                         // If the pipe is already an object we'll just make a callable and pass it to
  9.                         // the pipe as-is. There is no need to do any extra parsing and formatting
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $middleware $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  2.         return (new Pipeline($this->container))
  3.                         ->send($request)
  4.                         ->through($middleware)
  5.                         ->then(fn ($request) => $this->prepareResponse(
  6.                             $request$route->run()
  7.                         ));
  8.     }
  9.     /**
  1.         $request->setRouteResolver(fn () => $route);
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @return \Illuminate\Http\Response
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (! $this->hasMatchingPath($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->cors->setOptions($this->container['config']->get('cors', []));
  9.         if ($this->cors->isPreflightRequest($request)) {
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle(object(Request)) in /home/lineteco/public_html/tour.lineteco.com/public/index.php (line 51)
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

MissingAppKeyException
Illuminate\Encryption\MissingAppKeyException:
No application encryption key has been specified.

  at /home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:79
  at Illuminate\Encryption\EncryptionServiceProvider->Illuminate\Encryption\{closure}('')
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Support/helpers.php:319)
  at tap('', object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:77)
  at Illuminate\Encryption\EncryptionServiceProvider->key(array('name' => 'LINETECO ERP SYSTEM', 'env' => 'local', 'debug' => true, 'url' => 'https://tour.lineteco.com/', 'timezone' => 'Asia/Kolkata', 'locale' => 'en', 'fallback_locale' => 'en', 'faker_locale' => 'en_US', 'key' => '', 'cipher' => 'AES-256-CBC', 'maintenance' => array('driver' => 'file'), 'providers' => array('Illuminate\\Auth\\AuthServiceProvider', 'Illuminate\\Broadcasting\\BroadcastServiceProvider', 'Illuminate\\Bus\\BusServiceProvider', 'Illuminate\\Cache\\CacheServiceProvider', 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'Illuminate\\Cookie\\CookieServiceProvider', 'Illuminate\\Database\\DatabaseServiceProvider', 'Illuminate\\Encryption\\EncryptionServiceProvider', 'Illuminate\\Filesystem\\FilesystemServiceProvider', 'Illuminate\\Foundation\\Providers\\FoundationServiceProvider', 'Illuminate\\Hashing\\HashServiceProvider', 'Illuminate\\Mail\\MailServiceProvider', 'Illuminate\\Notifications\\NotificationServiceProvider', 'Illuminate\\Pagination\\PaginationServiceProvider', 'Illuminate\\Pipeline\\PipelineServiceProvider', 'Illuminate\\Queue\\QueueServiceProvider', 'Illuminate\\Redis\\RedisServiceProvider', 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider', 'Illuminate\\Session\\SessionServiceProvider', 'Illuminate\\Translation\\TranslationServiceProvider', 'Illuminate\\Validation\\ValidationServiceProvider', 'Illuminate\\View\\ViewServiceProvider', 'Unicodeveloper\\Paystack\\PaystackServiceProvider', 'Laravel\\Tinker\\TinkerServiceProvider', 'App\\Providers\\AppServiceProvider', 'App\\Providers\\AuthServiceProvider', 'App\\Providers\\BroadcastServiceProvider', 'App\\Providers\\EventServiceProvider', 'App\\Providers\\RouteServiceProvider', 'App\\Providers\\ModuleAssetServiceProvider', 'Collective\\Html\\HtmlServiceProvider', 'Milon\\Barcode\\BarcodeServiceProvider', 'ConsoleTVs\\Charts\\ChartsServiceProvider', 'Nwidart\\Menus\\MenusServiceProvider', 'Knox\\Pesapal\\PesapalServiceProvider'), 'aliases' => array('App' => 'Illuminate\\Support\\Facades\\App', 'Arr' => 'Illuminate\\Support\\Arr', 'Artisan' => 'Illuminate\\Support\\Facades\\Artisan', 'Auth' => 'Illuminate\\Support\\Facades\\Auth', 'Blade' => 'Illuminate\\Support\\Facades\\Blade', 'Broadcast' => 'Illuminate\\Support\\Facades\\Broadcast', 'Bus' => 'Illuminate\\Support\\Facades\\Bus', 'Cache' => 'Illuminate\\Support\\Facades\\Cache', 'Config' => 'Illuminate\\Support\\Facades\\Config', 'Cookie' => 'Illuminate\\Support\\Facades\\Cookie', 'Crypt' => 'Illuminate\\Support\\Facades\\Crypt', 'Date' => 'Illuminate\\Support\\Facades\\Date', 'DB' => 'Illuminate\\Support\\Facades\\DB', 'Eloquent' => 'Illuminate\\Database\\Eloquent\\Model', 'Event' => 'Illuminate\\Support\\Facades\\Event', 'File' => 'Illuminate\\Support\\Facades\\File', 'Gate' => 'Illuminate\\Support\\Facades\\Gate', 'Hash' => 'Illuminate\\Support\\Facades\\Hash', 'Http' => 'Illuminate\\Support\\Facades\\Http', 'Js' => 'Illuminate\\Support\\Js', 'Lang' => 'Illuminate\\Support\\Facades\\Lang', 'Log' => 'Illuminate\\Support\\Facades\\Log', 'Mail' => 'Illuminate\\Support\\Facades\\Mail', 'Notification' => 'Illuminate\\Support\\Facades\\Notification', 'Password' => 'Illuminate\\Support\\Facades\\Password', 'Queue' => 'Illuminate\\Support\\Facades\\Queue', 'RateLimiter' => 'Illuminate\\Support\\Facades\\RateLimiter', 'Redirect' => 'Illuminate\\Support\\Facades\\Redirect', 'Request' => 'Illuminate\\Support\\Facades\\Request', 'Response' => 'Illuminate\\Support\\Facades\\Response', 'Route' => 'Illuminate\\Support\\Facades\\Route', 'Schema' => 'Illuminate\\Support\\Facades\\Schema', 'Session' => 'Illuminate\\Support\\Facades\\Session', 'Storage' => 'Illuminate\\Support\\Facades\\Storage', 'Str' => 'Illuminate\\Support\\Str', 'URL' => 'Illuminate\\Support\\Facades\\URL', 'Validator' => 'Illuminate\\Support\\Facades\\Validator', 'View' => 'Illuminate\\Support\\Facades\\View', 'Vite' => 'Illuminate\\Support\\Facades\\Vite', 'Carbon' => 'Carbon\\Carbon', 'Charts' => 'ConsoleTVs\\Charts\\Facades\\Charts', 'DNS1D' => 'Milon\\Barcode\\Facades\\DNS1DFacade', 'DNS2D' => 'Milon\\Barcode\\Facades\\DNS2DFacade', 'Datatables' => 'Yajra\\DataTables\\Facades\\DataTables', 'Form' => 'Collective\\Html\\FormFacade', 'Html' => 'Collective\\Html\\HtmlFacade', 'Paystack' => 'Unicodeveloper\\Paystack\\Facades\\Paystack', 'Redis' => 'Illuminate\\Support\\Facades\\Redis', 'Menu' => 'Nwidart\\Menus\\Facades\\Menu', 'Pesapal' => 'Knox\\Pesapal\\Facades\\Pesapal')))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:60)
  at Illuminate\Encryption\EncryptionServiceProvider->parseKey(array('name' => 'LINETECO ERP SYSTEM', 'env' => 'local', 'debug' => true, 'url' => 'https://tour.lineteco.com/', 'timezone' => 'Asia/Kolkata', 'locale' => 'en', 'fallback_locale' => 'en', 'faker_locale' => 'en_US', 'key' => '', 'cipher' => 'AES-256-CBC', 'maintenance' => array('driver' => 'file'), 'providers' => array('Illuminate\\Auth\\AuthServiceProvider', 'Illuminate\\Broadcasting\\BroadcastServiceProvider', 'Illuminate\\Bus\\BusServiceProvider', 'Illuminate\\Cache\\CacheServiceProvider', 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider', 'Illuminate\\Cookie\\CookieServiceProvider', 'Illuminate\\Database\\DatabaseServiceProvider', 'Illuminate\\Encryption\\EncryptionServiceProvider', 'Illuminate\\Filesystem\\FilesystemServiceProvider', 'Illuminate\\Foundation\\Providers\\FoundationServiceProvider', 'Illuminate\\Hashing\\HashServiceProvider', 'Illuminate\\Mail\\MailServiceProvider', 'Illuminate\\Notifications\\NotificationServiceProvider', 'Illuminate\\Pagination\\PaginationServiceProvider', 'Illuminate\\Pipeline\\PipelineServiceProvider', 'Illuminate\\Queue\\QueueServiceProvider', 'Illuminate\\Redis\\RedisServiceProvider', 'Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider', 'Illuminate\\Session\\SessionServiceProvider', 'Illuminate\\Translation\\TranslationServiceProvider', 'Illuminate\\Validation\\ValidationServiceProvider', 'Illuminate\\View\\ViewServiceProvider', 'Unicodeveloper\\Paystack\\PaystackServiceProvider', 'Laravel\\Tinker\\TinkerServiceProvider', 'App\\Providers\\AppServiceProvider', 'App\\Providers\\AuthServiceProvider', 'App\\Providers\\BroadcastServiceProvider', 'App\\Providers\\EventServiceProvider', 'App\\Providers\\RouteServiceProvider', 'App\\Providers\\ModuleAssetServiceProvider', 'Collective\\Html\\HtmlServiceProvider', 'Milon\\Barcode\\BarcodeServiceProvider', 'ConsoleTVs\\Charts\\ChartsServiceProvider', 'Nwidart\\Menus\\MenusServiceProvider', 'Knox\\Pesapal\\PesapalServiceProvider'), 'aliases' => array('App' => 'Illuminate\\Support\\Facades\\App', 'Arr' => 'Illuminate\\Support\\Arr', 'Artisan' => 'Illuminate\\Support\\Facades\\Artisan', 'Auth' => 'Illuminate\\Support\\Facades\\Auth', 'Blade' => 'Illuminate\\Support\\Facades\\Blade', 'Broadcast' => 'Illuminate\\Support\\Facades\\Broadcast', 'Bus' => 'Illuminate\\Support\\Facades\\Bus', 'Cache' => 'Illuminate\\Support\\Facades\\Cache', 'Config' => 'Illuminate\\Support\\Facades\\Config', 'Cookie' => 'Illuminate\\Support\\Facades\\Cookie', 'Crypt' => 'Illuminate\\Support\\Facades\\Crypt', 'Date' => 'Illuminate\\Support\\Facades\\Date', 'DB' => 'Illuminate\\Support\\Facades\\DB', 'Eloquent' => 'Illuminate\\Database\\Eloquent\\Model', 'Event' => 'Illuminate\\Support\\Facades\\Event', 'File' => 'Illuminate\\Support\\Facades\\File', 'Gate' => 'Illuminate\\Support\\Facades\\Gate', 'Hash' => 'Illuminate\\Support\\Facades\\Hash', 'Http' => 'Illuminate\\Support\\Facades\\Http', 'Js' => 'Illuminate\\Support\\Js', 'Lang' => 'Illuminate\\Support\\Facades\\Lang', 'Log' => 'Illuminate\\Support\\Facades\\Log', 'Mail' => 'Illuminate\\Support\\Facades\\Mail', 'Notification' => 'Illuminate\\Support\\Facades\\Notification', 'Password' => 'Illuminate\\Support\\Facades\\Password', 'Queue' => 'Illuminate\\Support\\Facades\\Queue', 'RateLimiter' => 'Illuminate\\Support\\Facades\\RateLimiter', 'Redirect' => 'Illuminate\\Support\\Facades\\Redirect', 'Request' => 'Illuminate\\Support\\Facades\\Request', 'Response' => 'Illuminate\\Support\\Facades\\Response', 'Route' => 'Illuminate\\Support\\Facades\\Route', 'Schema' => 'Illuminate\\Support\\Facades\\Schema', 'Session' => 'Illuminate\\Support\\Facades\\Session', 'Storage' => 'Illuminate\\Support\\Facades\\Storage', 'Str' => 'Illuminate\\Support\\Str', 'URL' => 'Illuminate\\Support\\Facades\\URL', 'Validator' => 'Illuminate\\Support\\Facades\\Validator', 'View' => 'Illuminate\\Support\\Facades\\View', 'Vite' => 'Illuminate\\Support\\Facades\\Vite', 'Carbon' => 'Carbon\\Carbon', 'Charts' => 'ConsoleTVs\\Charts\\Facades\\Charts', 'DNS1D' => 'Milon\\Barcode\\Facades\\DNS1DFacade', 'DNS2D' => 'Milon\\Barcode\\Facades\\DNS2DFacade', 'Datatables' => 'Yajra\\DataTables\\Facades\\DataTables', 'Form' => 'Collective\\Html\\FormFacade', 'Html' => 'Collective\\Html\\HtmlFacade', 'Paystack' => 'Unicodeveloper\\Paystack\\Facades\\Paystack', 'Redis' => 'Illuminate\\Support\\Facades\\Redis', 'Menu' => 'Nwidart\\Menus\\Facades\\Menu', 'Pesapal' => 'Knox\\Pesapal\\Facades\\Pesapal')))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:32)
  at Illuminate\Encryption\EncryptionServiceProvider->Illuminate\Encryption\{closure}(object(Application), array())
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:885)
  at Illuminate\Container\Container->build(object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:770)
  at Illuminate\Container\Container->resolve('encrypter', array(), true)
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:881)
  at Illuminate\Foundation\Application->resolve('encrypter', array())
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:706)
  at Illuminate\Container\Container->make('encrypter', array())
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:866)
  at Illuminate\Foundation\Application->make('encrypter')
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:1043)
  at Illuminate\Container\Container->resolveClass(object(ReflectionParameter))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:959)
  at Illuminate\Container\Container->resolveDependencies(array(object(ReflectionParameter)))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:920)
  at Illuminate\Container\Container->build('App\\Http\\Middleware\\EncryptCookies')
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:770)
  at Illuminate\Container\Container->resolve('App\\Http\\Middleware\\EncryptCookies', array(), true)
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:881)
  at Illuminate\Foundation\Application->resolve('App\\Http\\Middleware\\EncryptCookies', array())
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:706)
  at Illuminate\Container\Container->make('App\\Http\\Middleware\\EncryptCookies', array())
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:866)
  at Illuminate\Foundation\Application->make('App\\Http\\Middleware\\EncryptCookies')
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:169)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:797)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:776)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:740)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:729)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:190)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:49)
  at Illuminate\Http\Middleware\HandleCors->handle(object(Request), object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/lineteco/public_html/tour.lineteco.com/public/index.php:51)