Deprecated: Return type of Carbon\Carbon::createFromTimestamp($timestamp, $tz = null) should either be compatible with DateTime::createFromTimestamp(int|float $timestamp): static, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /www/wwwroot/repairbox.alieviomni.com/vendor/nesbot/carbon/src/Carbon/Traits/Timestamp.php on line 29

Deprecated: Constant PDO::MYSQL_ATTR_SSL_CA is deprecated since 8.5, use Pdo\Mysql::ATTR_SSL_CA instead in /www/wwwroot/repairbox.alieviomni.com/config/database.php on line 62
No application encryption key has been specified. (500 Internal Server Error)

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. }
in /www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Support/helpers.php -> {closure:Illuminate\Encryption\EncryptionServiceProvider::key():77} (line 307)
  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.
in /www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Container/Container.php -> {closure:Illuminate\Encryption\EncryptionServiceProvider::registerEncrypter():29} (line 908)
  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.         $object $this->isBuildable($concrete$abstract)
  5.             ? $this->build($concrete)
  6.             : $this->make($concrete);
  7.         // If we defined any extenders for this type, we'll need to spin through them
  8.         // and apply them to the object being built. This allows for the extension
  9.         // of services, such as changing configuration or decorating the object.
  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.         $object $this->isBuildable($concrete$abstract)
  5.             ? $this->build($concrete)
  6.             : $this->make($concrete);
  7.         // If we defined any extenders for this type, we'll need to spin through them
  8.         // and apply them to the object being built. This allows for the extension
  9.         // of services, such as changing configuration or decorating the object.
  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
in /www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():158}:159} (line 119)
  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.
in /www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} (line 144)
  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);
in /www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> {closure:{closure:Illuminate\Pipeline\Pipeline::carry():158}:159} (line 119)
  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 /www/wwwroot/repairbox.alieviomni.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 /www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:79
  at Illuminate\Encryption\EncryptionServiceProvider->{closure:Illuminate\Encryption\EncryptionServiceProvider::key():77}(null)
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Support/helpers.php:307)
  at tap(null, object(Closure))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:77)
  at Illuminate\Encryption\EncryptionServiceProvider->key(array('name' => 'Repair Box', 'env' => 'production', 'debug' => true, 'url' => 'http://localhost', 'asset_url' => null, 'timezone' => 'UTC', 'app_date_format' => 'Y-m-d H:i:s', 'locale' => 'en', 'fallback_locale' => 'en', 'faker_locale' => 'en_US', 'key' => null, 'pack' => null, '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\\Auth\\Passwords\\PasswordResetServiceProvider', 'Illuminate\\Pipeline\\PipelineServiceProvider', 'Illuminate\\Queue\\QueueServiceProvider', 'Illuminate\\Redis\\RedisServiceProvider', 'Illuminate\\Session\\SessionServiceProvider', 'Illuminate\\Translation\\TranslationServiceProvider', 'Illuminate\\Validation\\ValidationServiceProvider', 'Illuminate\\View\\ViewServiceProvider', 'App\\Providers\\AppServiceProvider', 'App\\Providers\\AuthServiceProvider', 'App\\Providers\\EventServiceProvider', 'App\\Providers\\RouteServiceProvider', 'App\\Providers\\ComposerViewServiceProvider', 'Maatwebsite\\Excel\\ExcelServiceProvider', 'NotificationChannels\\Twilio\\TwilioProvider'), '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', 'Number' => 'Illuminate\\Support\\Number', 'Password' => 'Illuminate\\Support\\Facades\\Password', 'Process' => 'Illuminate\\Support\\Facades\\Process', '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', 'Excel' => 'Maatwebsite\\Excel\\Facades\\Excel', 'Nexmo' => 'Nexmo\\Laravel\\Facade\\Nexmo'), 'app_https' => false, 'demo_mode' => false, 'portfolio' => false, 'version' => '1.2.8', 'masking' => false))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:60)
  at Illuminate\Encryption\EncryptionServiceProvider->parseKey(array('name' => 'Repair Box', 'env' => 'production', 'debug' => true, 'url' => 'http://localhost', 'asset_url' => null, 'timezone' => 'UTC', 'app_date_format' => 'Y-m-d H:i:s', 'locale' => 'en', 'fallback_locale' => 'en', 'faker_locale' => 'en_US', 'key' => null, 'pack' => null, '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\\Auth\\Passwords\\PasswordResetServiceProvider', 'Illuminate\\Pipeline\\PipelineServiceProvider', 'Illuminate\\Queue\\QueueServiceProvider', 'Illuminate\\Redis\\RedisServiceProvider', 'Illuminate\\Session\\SessionServiceProvider', 'Illuminate\\Translation\\TranslationServiceProvider', 'Illuminate\\Validation\\ValidationServiceProvider', 'Illuminate\\View\\ViewServiceProvider', 'App\\Providers\\AppServiceProvider', 'App\\Providers\\AuthServiceProvider', 'App\\Providers\\EventServiceProvider', 'App\\Providers\\RouteServiceProvider', 'App\\Providers\\ComposerViewServiceProvider', 'Maatwebsite\\Excel\\ExcelServiceProvider', 'NotificationChannels\\Twilio\\TwilioProvider'), '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', 'Number' => 'Illuminate\\Support\\Number', 'Password' => 'Illuminate\\Support\\Facades\\Password', 'Process' => 'Illuminate\\Support\\Facades\\Process', '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', 'Excel' => 'Maatwebsite\\Excel\\Facades\\Excel', 'Nexmo' => 'Nexmo\\Laravel\\Facade\\Nexmo'), 'app_https' => false, 'demo_mode' => false, 'portfolio' => false, 'version' => '1.2.8', 'masking' => false))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:32)
  at Illuminate\Encryption\EncryptionServiceProvider->{closure:Illuminate\Encryption\EncryptionServiceProvider::registerEncrypter():29}(object(Application), array())
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:908)
  at Illuminate\Container\Container->build(object(Closure))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:795)
  at Illuminate\Container\Container->resolve('encrypter', array(), true)
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:957)
  at Illuminate\Foundation\Application->resolve('encrypter', array())
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:731)
  at Illuminate\Container\Container->make('encrypter', array())
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:942)
  at Illuminate\Foundation\Application->make('encrypter')
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:1066)
  at Illuminate\Container\Container->resolveClass(object(ReflectionParameter))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:982)
  at Illuminate\Container\Container->resolveDependencies(array(object(ReflectionParameter)))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:943)
  at Illuminate\Container\Container->build('App\\Http\\Middleware\\EncryptCookies')
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:795)
  at Illuminate\Container\Container->resolve('App\\Http\\Middleware\\EncryptCookies', array(), true)
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:957)
  at Illuminate\Foundation\Application->resolve('App\\Http\\Middleware\\EncryptCookies', array())
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Container/Container.php:731)
  at Illuminate\Container\Container->make('App\\Http\\Middleware\\EncryptCookies', array())
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:942)
  at Illuminate\Foundation\Application->make('App\\Http\\Middleware\\EncryptCookies')
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:172)
  at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():158}:159}(object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:784)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Routing/Router.php:737)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
  at Illuminate\Foundation\Http\Kernel->{closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197}(object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
  at Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():142}(object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():158}:159}(object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():158}:159}(object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():158}:159}(object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:99)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():158}:159}(object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/www/wwwroot/repairbox.alieviomni.com/public/index.php:51)