Whoops! There was an error.
ErrorException (E_WARNING)
array_merge(): Argument #2 is not an array ErrorException thrown with message "array_merge(): Argument #2 is not an array" Stacktrace: #9 ErrorException in C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\ProviderRepository.php:95 #8 array_merge in C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\ProviderRepository.php:95 #7 Illuminate\Foundation\ProviderRepository:loadManifest in C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\ProviderRepository.php:55 #6 Illuminate\Foundation\ProviderRepository:load in C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Application.php:606 #5 Illuminate\Foundation\Application:registerConfiguredProviders in C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\RegisterProviders.php:17 #4 Illuminate\Foundation\Bootstrap\RegisterProviders:bootstrap in C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Application.php:230 #3 Illuminate\Foundation\Application:bootstrapWith in C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:151 #2 Illuminate\Foundation\Http\Kernel:bootstrap in C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:135 #1 Illuminate\Foundation\Http\Kernel:sendRequestThroughRouter in C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php:109 #0 Illuminate\Foundation\Http\Kernel:handle in C:\webapps\ECUAIR_V2\public\index.php:55
9
ErrorException
…\vendor\laravel\framework\src\Illuminate\Foundation\ProviderRepository.php95
8
array_merge
…\vendor\laravel\framework\src\Illuminate\Foundation\ProviderRepository.php95
7
Illuminate\Foundation\ProviderRepository loadManifest
…\vendor\laravel\framework\src\Illuminate\Foundation\ProviderRepository.php55
6
Illuminate\Foundation\ProviderRepository load
…\vendor\laravel\framework\src\Illuminate\Foundation\Application.php606
5
Illuminate\Foundation\Application registerConfiguredProviders
…\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\RegisterProviders.php17
4
Illuminate\Foundation\Bootstrap\RegisterProviders bootstrap
…\vendor\laravel\framework\src\Illuminate\Foundation\Application.php230
3
Illuminate\Foundation\Application bootstrapWith
…\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php151
2
Illuminate\Foundation\Http\Kernel bootstrap
…\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php135
1
Illuminate\Foundation\Http\Kernel sendRequestThroughRouter
…\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php109
0
Illuminate\Foundation\Http\Kernel handle
…\public\index.php55
C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\ProviderRepository.php
        }
 
        $this->app->addDeferredServices($manifest['deferred']);
    }
 
    /**
     * Load the service provider manifest JSON file.
     *
     * @return array|null
     */
    public function loadManifest()
    {
        // The service manifest is a file containing a JSON representation of every
        // service provided by the application and whether its provider is using
        // deferred loading or should be eagerly loaded on each request to us.
        if ($this->files->exists($this->manifestPath)) {
            $manifest = $this->files->getRequire($this->manifestPath);
 
            if ($manifest) {
                return array_merge(['when' => []], $manifest);
            }
        }
    }
 
    /**
     * Determine if the manifest should be compiled.
     *
     * @param  array  $manifest
     * @param  array  $providers
     * @return bool
     */
    public function shouldRecompile($manifest, $providers)
    {
        return is_null($manifest) || $manifest['providers'] != $providers;
    }
 
    /**
     * Register the load events for the given provider.
     *
     * @param  string  $provider
Arguments
  1. "array_merge(): Argument #2 is not an array"
    
C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\ProviderRepository.php
        }
 
        $this->app->addDeferredServices($manifest['deferred']);
    }
 
    /**
     * Load the service provider manifest JSON file.
     *
     * @return array|null
     */
    public function loadManifest()
    {
        // The service manifest is a file containing a JSON representation of every
        // service provided by the application and whether its provider is using
        // deferred loading or should be eagerly loaded on each request to us.
        if ($this->files->exists($this->manifestPath)) {
            $manifest = $this->files->getRequire($this->manifestPath);
 
            if ($manifest) {
                return array_merge(['when' => []], $manifest);
            }
        }
    }
 
    /**
     * Determine if the manifest should be compiled.
     *
     * @param  array  $manifest
     * @param  array  $providers
     * @return bool
     */
    public function shouldRecompile($manifest, $providers)
    {
        return is_null($manifest) || $manifest['providers'] != $providers;
    }
 
    /**
     * Register the load events for the given provider.
     *
     * @param  string  $provider
Arguments
  1. array:1 [
      "when" => []
    ]
    
  2. 1
    
C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\ProviderRepository.php
     * @param  \Illuminate\Filesystem\Filesystem  $files
     * @param  string  $manifestPath
     * @return void
     */
    public function __construct(ApplicationContract $app, Filesystem $files, $manifestPath)
    {
        $this->app = $app;
        $this->files = $files;
        $this->manifestPath = $manifestPath;
    }
 
    /**
     * Register the application service providers.
     *
     * @param  array  $providers
     * @return void
     */
    public function load(array $providers)
    {
        $manifest = $this->loadManifest();
 
        // First we will load the service manifest, which contains information on all
        // service providers registered with the application and which services it
        // provides. This is used to know which services are "deferred" loaders.
        if ($this->shouldRecompile($manifest, $providers)) {
            $manifest = $this->compileManifest($providers);
        }
 
        // Next, we will register events to load the providers for each of the events
        // that it has requested. This allows the service provider to defer itself
        // while still getting automatically loaded when a certain event occurs.
        foreach ($manifest['when'] as $provider => $events) {
            $this->registerLoadEvents($provider, $events);
        }
 
        // We will go ahead and register all of the eagerly loaded providers with the
        // application so their services can be registered with the application as
        // a provided service. Then we will set the deferred service list on it.
        foreach ($manifest['eager'] as $provider) {
            $this->app->register($provider);
C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Application.php
    {
        return $this['env'] === 'testing';
    }
 
    /**
     * Register all of the configured providers.
     *
     * @return void
     */
    public function registerConfiguredProviders()
    {
        $providers = Collection::make($this->config['app.providers'])
                        ->partition(function ($provider) {
                            return strpos($provider, 'Illuminate\\') === 0;
                        });
 
        $providers->splice(1, 0, [$this->make(PackageManifest::class)->providers()]);
 
        (new ProviderRepository($this, new Filesystem, $this->getCachedServicesPath()))
                    ->load($providers->collapse()->toArray());
    }
 
    /**
     * Register a service provider with the application.
     *
     * @param  \Illuminate\Support\ServiceProvider|string  $provider
     * @param  bool  $force
     * @return \Illuminate\Support\ServiceProvider
     */
    public function register($provider, $force = false)
    {
        if (($registered = $this->getProvider($provider)) && ! $force) {
            return $registered;
        }
 
        // If the given "provider" is a string, we will resolve it, passing in the
        // application instance automatically for the developer. This is simply
        // a more convenient way of specifying your service provider classes.
        if (is_string($provider)) {
            $provider = $this->resolveProvider($provider);
Arguments
  1. array:30 [
      0 => "Illuminate\Auth\AuthServiceProvider"
      1 => "Illuminate\Broadcasting\BroadcastServiceProvider"
      2 => "Illuminate\Bus\BusServiceProvider"
      3 => "Illuminate\Cache\CacheServiceProvider"
      4 => "Illuminate\Foundation\Providers\ConsoleSupportServiceProvider"
      5 => "Illuminate\Cookie\CookieServiceProvider"
      6 => "Illuminate\Database\DatabaseServiceProvider"
      7 => "Illuminate\Encryption\EncryptionServiceProvider"
      8 => "Illuminate\Filesystem\FilesystemServiceProvider"
      9 => "Illuminate\Foundation\Providers\FoundationServiceProvider"
      10 => "Illuminate\Hashing\HashServiceProvider"
      11 => "Illuminate\Mail\MailServiceProvider"
      12 => "Illuminate\Notifications\NotificationServiceProvider"
      13 => "Illuminate\Pagination\PaginationServiceProvider"
      14 => "Illuminate\Pipeline\PipelineServiceProvider"
      15 => "Illuminate\Queue\QueueServiceProvider"
      16 => "Illuminate\Redis\RedisServiceProvider"
      17 => "Illuminate\Auth\Passwords\PasswordResetServiceProvider"
      18 => "Illuminate\Session\SessionServiceProvider"
      19 => "Illuminate\Translation\TranslationServiceProvider"
      20 => "Illuminate\Validation\ValidationServiceProvider"
      21 => "Illuminate\View\ViewServiceProvider"
      22 => "App\Providers\AppServiceProvider"
      23 => "App\Providers\AuthServiceProvider"
      24 => "App\Providers\EventServiceProvider"
      25 => "App\Providers\RouteServiceProvider"
      26 => "Barryvdh\DomPDF\ServiceProvider"
      27 => "Krlove\EloquentModelGenerator\Provider\GeneratorServiceProvider"
      28 => "Maatwebsite\Excel\ExcelServiceProvider"
      29 => "App\Providers\TenantServiceProvider"
    ]
    
C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\RegisterProviders.php
<?php
 
namespace Illuminate\Foundation\Bootstrap;
 
use Illuminate\Contracts\Foundation\Application;
 
class RegisterProviders
{
    /**
     * Bootstrap the given application.
     *
     * @param  \Illuminate\Contracts\Foundation\Application  $app
     * @return void
     */
    public function bootstrap(Application $app)
    {
        $app->registerConfiguredProviders();
    }
}
 
C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Application.php
    {
        $this->register(new EventServiceProvider($this));
        $this->register(new LogServiceProvider($this));
        $this->register(new RoutingServiceProvider($this));
    }
 
    /**
     * Run the given array of bootstrap classes.
     *
     * @param  string[]  $bootstrappers
     * @return void
     */
    public function bootstrapWith(array $bootstrappers)
    {
        $this->hasBeenBootstrapped = true;
 
        foreach ($bootstrappers as $bootstrapper) {
            $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
 
            $this->make($bootstrapper)->bootstrap($this);
 
            $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
        }
    }
 
    /**
     * Register a callback to run after loading the environment.
     *
     * @param  \Closure  $callback
     * @return void
     */
    public function afterLoadingEnvironment(Closure $callback)
    {
        return $this->afterBootstrapping(
            LoadEnvironmentVariables::class, $callback
        );
    }
 
    /**
     * Register a callback to run before a bootstrapper.
Arguments
  1. Illuminate\Foundation\Application {#6}
    
C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php
 
        Facade::clearResolvedInstance('request');
 
        $this->bootstrap();
 
        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }
 
    /**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
 
    /**
     * Get the route dispatcher callback.
     *
     * @return \Closure
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
Arguments
  1. array:6 [
      0 => "Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables"
      1 => "Illuminate\Foundation\Bootstrap\LoadConfiguration"
      2 => "Illuminate\Foundation\Bootstrap\HandleExceptions"
      3 => "Illuminate\Foundation\Bootstrap\RegisterFacades"
      4 => "Illuminate\Foundation\Bootstrap\RegisterProviders"
      5 => "Illuminate\Foundation\Bootstrap\BootProviders"
    ]
    
C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php
        $this->app['events']->dispatch(
            new RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
    {
        $this->app->instance('request', $request);
 
        Facade::clearResolvedInstance('request');
 
        $this->bootstrap();
 
        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }
 
    /**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
 
    /**
C:\webapps\ECUAIR_V2\vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php
    public function __construct(Application $app, Router $router)
    {
        $this->app = $app;
        $this->router = $router;
 
        $this->syncMiddlewareToRouter();
    }
 
    /**
     * Handle an incoming HTTP request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function handle($request)
    {
        try {
            $request->enableHttpMethodParameterOverride();
 
            $response = $this->sendRequestThroughRouter($request);
        } catch (Throwable $e) {
            $this->reportException($e);
 
            $response = $this->renderException($request, $e);
        }
 
        $this->app['events']->dispatch(
            new RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
Arguments
  1. Illuminate\Http\Request {#61
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#71}
      +request: Symfony\Component\HttpFoundation\InputBag {#69}
      +query: Symfony\Component\HttpFoundation\InputBag {#69}
      +server: Symfony\Component\HttpFoundation\ServerBag {#73}
      +files: Symfony\Component\HttpFoundation\FileBag {#66}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#72}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#74}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      -isIisRewrite: false
      pathInfo: "/"
      requestUri: "/"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    
C:\webapps\ECUAIR_V2\public\index.php
*/

$app = require_once __DIR__.'/../bootstrap/app.php';

/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/

$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);

$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);

$response->send();

$kernel->terminate($request, $response);
 
Arguments
  1. Illuminate\Http\Request {#61
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#71}
      +request: Symfony\Component\HttpFoundation\InputBag {#69}
      +query: Symfony\Component\HttpFoundation\InputBag {#69}
      +server: Symfony\Component\HttpFoundation\ServerBag {#73}
      +files: Symfony\Component\HttpFoundation\FileBag {#66}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#72}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#74}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      -isIisRewrite: false
      pathInfo: "/"
      requestUri: "/"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
_FCGI_X_PIPE_
"\\.\pipe\IISFCGI-dc0cd97b-9d05-4919-a1a7-e049732fa2ca"
ALLUSERSPROFILE
"C:\ProgramData"
APPDATA
"C:\WINDOWS\system32\config\systemprofile\AppData\Roaming"
APP_POOL_CONFIG
"C:\inetpub\temp\apppools\deskopen.com\deskopen.com.config"
APP_POOL_ID
"deskopen.com"
CommonProgramFiles
"C:\Program Files\Common Files"
CommonProgramFiles(x86)
"C:\Program Files (x86)\Common Files"
CommonProgramW6432
"C:\Program Files\Common Files"
COMPUTERNAME
"MINITOY"
ComSpec
"C:\WINDOWS\system32\cmd.exe"
DriverData
"C:\Windows\System32\Drivers\DriverData"
LOCALAPPDATA
"C:\WINDOWS\system32\config\systemprofile\AppData\Local"
NUMBER_OF_PROCESSORS
"4"
OS
"Windows_NT"
Path
"C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Azure Data Studio\bin;C:\Program Files\php\v7.2;C:\ProgramData\ComposerSetup\bin;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\PuTTY\;C:\Program Files\gs\gs10.01.2\bin;C:\php_imagick-3-7-0;C:\WINDOWS\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps"
PATHEXT
".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC"
PROCESSOR_ARCHITECTURE
"AMD64"
PROCESSOR_IDENTIFIER
"Intel64 Family 6 Model 158 Stepping 9, GenuineIntel"
PROCESSOR_LEVEL
"6"
PROCESSOR_REVISION
"9e09"
ProgramData
"C:\ProgramData"
ProgramFiles
"C:\Program Files"
ProgramFiles(x86)
"C:\Program Files (x86)"
ProgramW6432
"C:\Program Files"
PSModulePath
"C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files (x86)\Microsoft SQL Server\150\Tools\PowerShell\Modules\"
PUBLIC
"C:\Users\Public"
SystemDrive
"C:"
SystemRoot
"C:\WINDOWS"
TEMP
"C:\WINDOWS\TEMP"
TMP
"C:\WINDOWS\TEMP"
USERDOMAIN
"WORKGROUP"
USERNAME
"MINITOY$"
USERPROFILE
"C:\WINDOWS\system32\config\systemprofile"
windir
"C:\WINDOWS"
ZES_ENABLE_SYSMAN
"1"
ORIG_PATH_INFO
"/index.php"
URL
"/index.php"
SERVER_SOFTWARE
"Microsoft-IIS/10.0"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_PORT_SECURE
"0"
SERVER_PORT
"80"
SERVER_NAME
"deskopen.com"
SCRIPT_NAME
"/index.php"
SCRIPT_FILENAME
"C:\webapps\ECUAIR_V2\public\index.php"
REQUEST_URI
"/"
REQUEST_METHOD
"GET"
REMOTE_USER
""
REMOTE_PORT
"23290"
REMOTE_HOST
"172.71.254.107"
REMOTE_ADDR
"172.71.254.107"
QUERY_STRING
""
PATH_TRANSLATED
"C:\webapps\ECUAIR_V2\public\index.php"
LOGON_USER
""
LOCAL_ADDR
"75.8.43.69"
INSTANCE_META_PATH
"/LM/W3SVC/2"
INSTANCE_NAME
"DESKOPEN.COM"
INSTANCE_ID
"2"
HTTPS_SERVER_SUBJECT
""
HTTPS_SERVER_ISSUER
""
HTTPS_SECRETKEYSIZE
""
HTTPS_KEYSIZE
""
HTTPS
"off"
GATEWAY_INTERFACE
"CGI/1.1"
DOCUMENT_ROOT
"C:\webapps\ECUAIR_V2\public"
CONTENT_TYPE
""
CONTENT_LENGTH
"0"
CERT_SUBJECT
""
CERT_SERIALNUMBER
""
CERT_ISSUER
""
CERT_FLAGS
""
CERT_COOKIE
""
AUTH_USER
""
AUTH_PASSWORD
""
AUTH_TYPE
""
APPL_PHYSICAL_PATH
"C:\webapps\ECUAIR_V2\public\"
APPL_MD_PATH
"/LM/W3SVC/2/ROOT"
IIS_UrlRewriteModule
"7,1,1993,2351"
HTTP_CF_VISITOR
"{"scheme":"https"}"
HTTP_CF_IPCOUNTRY
"US"
HTTP_CF_CONNECTING_IP
"216.73.216.172"
HTTP_CDN_LOOP
"cloudflare; loops=1"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_CF_RAY
"94ed84a25f0722ec-ORD"
HTTP_X_FORWARDED_FOR
"216.73.216.172"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])"
HTTP_HOST
"deskopen.com"
HTTP_ACCEPT_ENCODING
"gzip, br"
HTTP_ACCEPT
"*/*"
HTTP_CONTENT_LENGTH
"0"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1749775031.7421
REQUEST_TIME
1749775031
APP_NAME
"ECU | AIR"
APP_COOKIE_NAME
"Secure__ECU | AIR"
APP_LOGIN_TITLE
"TEST - Air Freight Management System"
APP_USERN_ACTIVE
"false"
APP_ENV
"production"
APP_KEY
"base64:StD0JlkeFtxpMHnbdhLjsf20uRHHUrUqGML98jOlRhI="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://deskopen.com"
IGNITION_ENABLE_RUNNABLE_SOLUTIONS
"false"
DB_CONNECTION
"sqlsrv"
DB_HOST
"MINITOY\sqlexpress"
DB_PORT
""
DB_DATABASE
"usmiadbecuair"
DB_USERNAME
"webreports"
DB_PASSWORD
"EcuReport1**"
GRID_API_SECRET
"asd32efe32ef2df23"
X_API_CUSTOMER_KEY
"cqwemGZTUm2r23A88P5k94AAHAnDbNdZ"
SESSION_SECURE_COOKIE
"true"
APP_LAYOUT_SYSTEM
"1"
APP_WELCOME_SCREEN
"2"
MS_AUTH
"true"
DOMAIN_LOG
"false"
AZURE_CLIENT_ID
"ae4924c7-fe8a-4b6a-bf06-a869da5abd89"
AZURE_CLIENT_SECRET
"ZcW8Q~nZpZMFd0-3Q6A41M1WgZQtw2UzDY_MRcy5"
AZURE_TENANT_ID
"19470c39-fb57-4cea-8f8d-7c581679a164"
AZURE_REDIRECT_URI
"https://testair.ecuworldwide.com/callback"
AZURE_SCOPES
"openid profile User.Read email offline_access"
LOGOUT_REDIRECT_SITE
""
APP_MENU_TOOLS
"false"
APP_MENU_ACCOUNT
"false"
APP_MENU_LOG
"false"
APP_PIVOT
"false"
ECU360_DASHBOARD_BANNERPATH_QUOTE
"assets/img/ecu360/01_dashboard_ad.png"
ECU360_DASHBOARD_BANNERPATH_BOOKING
"assets/img/ecu360/02_dashboard_ad.png"
ECU360_DASHBOARD_BANNERPATH_BLOG
"assets/img/ecu360/03_dashboard_ad.png"
ECU360_DASHBOARD_BANNERPATH_BLOG_LINK
"https://ecu360.com/contentHub/blog"
ECU360_DASHBOARD_BANNERPATH_MY_AIR_QUOTES
"assets/img/ecu360/04_dashboard_ad.png"
ECU360_INSERT_BANNERPATH_QUOTE
"assets/img/ecu360/createnewquote_ad.png"
ECU360_INSERT_BANNERPATH_BOOKING
"assets/img/ecu360/createnewbooking_ad.png"
ECU360_INSERT_BANNER_QUOTE_MENUID
"10641"
ECU360_INSERT_BANNER_BOOKING_MENUID
"10643"
ECU360_MY_AIR_QUOTES_MENUID
"10642"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"gw3222.fortimail.com"
MAIL_PORT
"25"
xMAIL_USERNAME
"[email protected]"
xMAIL_PASSWORD
"Eci73958"
MAIL_ENCRYPTION
"null"
MAIL_FROM_NAME
"No-Reply"
MAIL_FROM_ADDRESS
"[email protected]"
SCANDOC_TABLE
"StockCargoDocs"
SCANDOC_ARCHIVEPATH
"DATAFILE"
SCANDOC_FIELD
"id"
SCANDOC_DOWNLOAD_FIELD
"Photos"
SCANDOC_ALLOWED_FILE_TYPES
"pdf,jpg,jpeg,png"
SCANDOC_DELETE_EMAILS
"true"
AZURE_MAILBOX_EMAIL
"[email protected]"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
RECAPTCHA_SITE_KEY
"6LffKOEaAAAAAKfAytx_FfgM6B2zZtR3yyxrLfXT"
RECAPTCHA_SECRET_KEY
"6LffKOEaAAAAAJVaVhkEiwy2R0OCS_FWuTTHgnhL"
APP_ACTIVE_EDITOR
"remarksbooking,remarksquotes"
APP_DEFAULT_DRPSEARCH
"id,reference,client,mawb"
APP_REMOVE_FIELD_FROM_VIEWPAGE_MAIN_GRID_ADMIN
"created_at,updated_at,LastUpdate,lastupdate,labels,process,docr,printinv"
APP_REMOVE_FIELD_FROM_VIEWPAGE_MAIN_GRID_USER
"action,legalentityid,companyid,usern,created_at,updated_at,LastUpdate,lastupdate,labels,process,docr,printinv,closealarm,email,manifest,company,quoteidecu,bookidecu,quotedate,datebooking,ecu360"
APP_REMOVE_FIELD_FROM_SEARCH_FORM_ADMIN
"invoice,lock,created_at,updated_at,lastupdate,password,email_verified_at,remember_token,docr,pdf,xml,labels"
APP_REMOVE_FIELD_FROM_SEARCH_FORM_USER
"process,invoice,lock,created_at,updated_at,lastupdate,password,email_verified_at,remember_token,docr,pdf,xml,labels,closealarm,email,action,solved,openalarm,new,quoteidecu,bookidecu,reported"
APP_REMOVE_FIELD_FROM_ADD_EDIT_FORM_ADMIN
"created_at,updated_at,id,lastupdate"
APP_REMOVE_FIELD_FROM_ADD_EDIT_FORM_USER
"created_at,updated_at,id,lastupdate,invoice,fromquote,prebooking,quoteidecu,bookidecu,ecu360,fromquote,uuid,reported"
APP_HIDDEN_FIELD_FROM_ADD_EDIT_FORM_ADMIN
""
APP_HIDDEN_FIELD_FROM_ADD_EDIT_FORM_USER
"usern,office,company,companyid,legalentityid,quoteidecu,bookidecu,fromquote,q_status,b_status,action,reported"
APP_HIDDEN_FIELD_FROM_SEARCH_FORM_ADMIN
""
APP_HIDDEN_FIELD_FROM_SEARCH_FORM_USER
"closealarm,action,usern,office,company,companyid,legalentityid,reported"
APP_PROTECTED_FIELDS_FROM_ADMIN
""
APP_PROTECTED_FIELDS_FROM_USER
"invoice,uuid"
APP_REMOVE_FIELD_FROM_EXPORT_ALL_ADMIN
"created_at,updated_at,lastupdate,labels,process,docr,printinv,action,docr"
APP_REMOVE_FIELD_FROM_EXPORT_ALL_USER
"office,company,action,legalentityid,companyid,usern,created_at,updated_at,lastupdate,labels,process,docr,printinv,reported"
Key Value
APP_NAME
"ECU | AIR"
APP_COOKIE_NAME
"Secure__ECU | AIR"
APP_LOGIN_TITLE
"TEST - Air Freight Management System"
APP_USERN_ACTIVE
"false"
APP_ENV
"production"
APP_KEY
"base64:StD0JlkeFtxpMHnbdhLjsf20uRHHUrUqGML98jOlRhI="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"https://deskopen.com"
IGNITION_ENABLE_RUNNABLE_SOLUTIONS
"false"
DB_CONNECTION
"sqlsrv"
DB_HOST
"MINITOY\sqlexpress"
DB_PORT
""
DB_DATABASE
"usmiadbecuair"
DB_USERNAME
"webreports"
DB_PASSWORD
"EcuReport1**"
GRID_API_SECRET
"asd32efe32ef2df23"
X_API_CUSTOMER_KEY
"cqwemGZTUm2r23A88P5k94AAHAnDbNdZ"
SESSION_SECURE_COOKIE
"true"
APP_LAYOUT_SYSTEM
"1"
APP_WELCOME_SCREEN
"2"
MS_AUTH
"true"
DOMAIN_LOG
"false"
AZURE_CLIENT_ID
"ae4924c7-fe8a-4b6a-bf06-a869da5abd89"
AZURE_CLIENT_SECRET
"ZcW8Q~nZpZMFd0-3Q6A41M1WgZQtw2UzDY_MRcy5"
AZURE_TENANT_ID
"19470c39-fb57-4cea-8f8d-7c581679a164"
AZURE_REDIRECT_URI
"https://testair.ecuworldwide.com/callback"
AZURE_SCOPES
"openid profile User.Read email offline_access"
LOGOUT_REDIRECT_SITE
""
APP_MENU_TOOLS
"false"
APP_MENU_ACCOUNT
"false"
APP_MENU_LOG
"false"
APP_PIVOT
"false"
ECU360_DASHBOARD_BANNERPATH_QUOTE
"assets/img/ecu360/01_dashboard_ad.png"
ECU360_DASHBOARD_BANNERPATH_BOOKING
"assets/img/ecu360/02_dashboard_ad.png"
ECU360_DASHBOARD_BANNERPATH_BLOG
"assets/img/ecu360/03_dashboard_ad.png"
ECU360_DASHBOARD_BANNERPATH_BLOG_LINK
"https://ecu360.com/contentHub/blog"
ECU360_DASHBOARD_BANNERPATH_MY_AIR_QUOTES
"assets/img/ecu360/04_dashboard_ad.png"
ECU360_INSERT_BANNERPATH_QUOTE
"assets/img/ecu360/createnewquote_ad.png"
ECU360_INSERT_BANNERPATH_BOOKING
"assets/img/ecu360/createnewbooking_ad.png"
ECU360_INSERT_BANNER_QUOTE_MENUID
"10641"
ECU360_INSERT_BANNER_BOOKING_MENUID
"10643"
ECU360_MY_AIR_QUOTES_MENUID
"10642"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"gw3222.fortimail.com"
MAIL_PORT
"25"
xMAIL_USERNAME
"[email protected]"
xMAIL_PASSWORD
"Eci73958"
MAIL_ENCRYPTION
"null"
MAIL_FROM_NAME
"No-Reply"
MAIL_FROM_ADDRESS
"[email protected]"
SCANDOC_TABLE
"StockCargoDocs"
SCANDOC_ARCHIVEPATH
"DATAFILE"
SCANDOC_FIELD
"id"
SCANDOC_DOWNLOAD_FIELD
"Photos"
SCANDOC_ALLOWED_FILE_TYPES
"pdf,jpg,jpeg,png"
SCANDOC_DELETE_EMAILS
"true"
AZURE_MAILBOX_EMAIL
"[email protected]"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
RECAPTCHA_SITE_KEY
"6LffKOEaAAAAAKfAytx_FfgM6B2zZtR3yyxrLfXT"
RECAPTCHA_SECRET_KEY
"6LffKOEaAAAAAJVaVhkEiwy2R0OCS_FWuTTHgnhL"
APP_ACTIVE_EDITOR
"remarksbooking,remarksquotes"
APP_DEFAULT_DRPSEARCH
"id,reference,client,mawb"
APP_REMOVE_FIELD_FROM_VIEWPAGE_MAIN_GRID_ADMIN
"created_at,updated_at,LastUpdate,lastupdate,labels,process,docr,printinv"
APP_REMOVE_FIELD_FROM_VIEWPAGE_MAIN_GRID_USER
"action,legalentityid,companyid,usern,created_at,updated_at,LastUpdate,lastupdate,labels,process,docr,printinv,closealarm,email,manifest,company,quoteidecu,bookidecu,quotedate,datebooking,ecu360"
APP_REMOVE_FIELD_FROM_SEARCH_FORM_ADMIN
"invoice,lock,created_at,updated_at,lastupdate,password,email_verified_at,remember_token,docr,pdf,xml,labels"
APP_REMOVE_FIELD_FROM_SEARCH_FORM_USER
"process,invoice,lock,created_at,updated_at,lastupdate,password,email_verified_at,remember_token,docr,pdf,xml,labels,closealarm,email,action,solved,openalarm,new,quoteidecu,bookidecu,reported"
APP_REMOVE_FIELD_FROM_ADD_EDIT_FORM_ADMIN
"created_at,updated_at,id,lastupdate"
APP_REMOVE_FIELD_FROM_ADD_EDIT_FORM_USER
"created_at,updated_at,id,lastupdate,invoice,fromquote,prebooking,quoteidecu,bookidecu,ecu360,fromquote,uuid,reported"
APP_HIDDEN_FIELD_FROM_ADD_EDIT_FORM_ADMIN
""
APP_HIDDEN_FIELD_FROM_ADD_EDIT_FORM_USER
"usern,office,company,companyid,legalentityid,quoteidecu,bookidecu,fromquote,q_status,b_status,action,reported"
APP_HIDDEN_FIELD_FROM_SEARCH_FORM_ADMIN
""
APP_HIDDEN_FIELD_FROM_SEARCH_FORM_USER
"closealarm,action,usern,office,company,companyid,legalentityid,reported"
APP_PROTECTED_FIELDS_FROM_ADMIN
""
APP_PROTECTED_FIELDS_FROM_USER
"invoice,uuid"
APP_REMOVE_FIELD_FROM_EXPORT_ALL_ADMIN
"created_at,updated_at,lastupdate,labels,process,docr,printinv,action,docr"
APP_REMOVE_FIELD_FROM_EXPORT_ALL_USER
"office,company,action,legalentityid,companyid,usern,created_at,updated_at,lastupdate,labels,process,docr,printinv,reported"
0. Whoops\Handler\PrettyPageHandler