Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_ERROR)
Class 'Barryvdh\TranslationManager\ManagerServiceProvider' not found Symfony\Component\Debug\Exception\FatalThrowableError thrown with message "Class 'Barryvdh\TranslationManager\ManagerServiceProvider' not found" Stacktrace: #9 Symfony\Component\Debug\Exception\FatalThrowableError in /home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php:208 #8 Illuminate\Foundation\ProviderRepository:createProvider in /home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php:144 #7 Illuminate\Foundation\ProviderRepository:compileManifest in /home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php:61 #6 Illuminate\Foundation\ProviderRepository:load in /home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:584 #5 Illuminate\Foundation\Application:registerConfiguredProviders in /home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php:17 #4 Illuminate\Foundation\Bootstrap\RegisterProviders:bootstrap in /home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:210 #3 Illuminate\Foundation\Application:bootstrapWith in /home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:162 #2 Illuminate\Foundation\Http\Kernel:bootstrap in /home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:146 #1 Illuminate\Foundation\Http\Kernel:sendRequestThroughRouter in /home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:116 #0 Illuminate\Foundation\Http\Kernel:handle in /home/mastergrace8/public_html/index.php:55
9
Symfony\Component\Debug\Exception\FatalThrowableError
/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php208
8
Illuminate\Foundation\ProviderRepository createProvider
/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php144
7
Illuminate\Foundation\ProviderRepository compileManifest
/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php61
6
Illuminate\Foundation\ProviderRepository load
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php584
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.php210
3
Illuminate\Foundation\Application bootstrapWith
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php162
2
Illuminate\Foundation\Http\Kernel bootstrap
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php146
1
Illuminate\Foundation\Http\Kernel sendRequestThroughRouter
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php116
0
Illuminate\Foundation\Http\Kernel handle
/public_html/index.php55
/home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php
        if (! is_writable($dirname = dirname($this->manifestPath))) {
            throw new Exception("The {$dirname} directory must be present and writable.");
        }
 
        $this->files->replace(
            $this->manifestPath, '<?php return '.var_export($manifest, true).';'
        );
 
        return array_merge(['when' => []], $manifest);
    }
 
    /**
     * Create a new provider instance.
     *
     * @param  string  $provider
     * @return \Illuminate\Support\ServiceProvider
     */
    public function createProvider($provider)
    {
        return new $provider($this->app);
    }
}
 
Arguments
  1. "Class 'Barryvdh\TranslationManager\ManagerServiceProvider' not found"
    
/home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php
        $this->app->make('events')->listen($events, function () use ($provider) {
            $this->app->register($provider);
        });
    }
 
    /**
     * Compile the application service manifest file.
     *
     * @param  array  $providers
     * @return array
     */
    protected function compileManifest($providers)
    {
        // The service manifest should contain a list of all of the providers for
        // the application so we can compare it on each request to the service
        // and determine if the manifest should be recompiled or is current.
        $manifest = $this->freshManifest($providers);
 
        foreach ($providers as $provider) {
            $instance = $this->createProvider($provider);
 
            // When recompiling the service manifest, we will spin through each of the
            // providers and check if it's a deferred provider or not. If so we'll
            // add it's provided services to the manifest and note the provider.
            if ($instance->isDeferred()) {
                foreach ($instance->provides() as $service) {
                    $manifest['deferred'][$service] = $provider;
                }
 
                $manifest['when'][$provider] = $instance->when();
            }
 
            // If the service providers are not deferred, we will simply add it to an
            // array of eagerly loaded providers that will get registered on every
            // request to this application instead of "lazy" loading every time.
            else {
                $manifest['eager'][] = $provider;
            }
        }
 
Arguments
  1. "Barryvdh\TranslationManager\ManagerServiceProvider"
    
/home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php
        $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);
        }
 
        $this->app->addDeferredServices($manifest['deferred']);
    }
 
    /**
Arguments
  1. array:39 [
      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 => "Barryvdh\TranslationManager\ManagerServiceProvider"
      23 => "Fideloper\Proxy\TrustedProxyServiceProvider"
      24 => "Intervention\Image\ImageServiceProvider"
      25 => "Jimmyjs\ReportGenerator\ServiceProvider"
      26 => "Laravel\Scout\ScoutServiceProvider"
      27 => "Laravel\Tinker\TinkerServiceProvider"
      28 => "Maatwebsite\Excel\ExcelServiceProvider"
      29 => "MaddHatter\LaravelFullcalendar\ServiceProvider"
      30 => "niklasravnsborg\LaravelPdf\PdfServiceProvider"
      31 => "NunoMaduro\Collision\Adapters\Laravel\CollisionServiceProvider"
      32 => "Tanmuhittin\LaravelGoogleTranslate\LaravelGoogleTranslateServiceProvider"
      33 => "TeamTNT\Scout\TNTSearchScoutServiceProvider"
      34 => "App\Providers\AppServiceProvider"
      35 => "App\Providers\AuthServiceProvider"
      36 => "App\Providers\EventServiceProvider"
      37 => "App\Providers\RouteServiceProvider"
      38 => "Mews\Captcha\CaptchaServiceProvider"
    ]
    
/home/mastergrace8/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 Str::startsWith($provider, 'Illuminate\\');
                        });
 
        $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:39 [
      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 => "Barryvdh\TranslationManager\ManagerServiceProvider"
      23 => "Fideloper\Proxy\TrustedProxyServiceProvider"
      24 => "Intervention\Image\ImageServiceProvider"
      25 => "Jimmyjs\ReportGenerator\ServiceProvider"
      26 => "Laravel\Scout\ScoutServiceProvider"
      27 => "Laravel\Tinker\TinkerServiceProvider"
      28 => "Maatwebsite\Excel\ExcelServiceProvider"
      29 => "MaddHatter\LaravelFullcalendar\ServiceProvider"
      30 => "niklasravnsborg\LaravelPdf\PdfServiceProvider"
      31 => "NunoMaduro\Collision\Adapters\Laravel\CollisionServiceProvider"
      32 => "Tanmuhittin\LaravelGoogleTranslate\LaravelGoogleTranslateServiceProvider"
      33 => "TeamTNT\Scout\TNTSearchScoutServiceProvider"
      34 => "App\Providers\AppServiceProvider"
      35 => "App\Providers\AuthServiceProvider"
      36 => "App\Providers\EventServiceProvider"
      37 => "App\Providers\RouteServiceProvider"
      38 => "Mews\Captcha\CaptchaServiceProvider"
    ]
    
/home/mastergrace8/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();
    }
}
 
/home/mastergrace8/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 {#2}
    
/home/mastergrace8/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"
    ]
    
/home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
        $this->app['events']->dispatch(
            new Events\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());
        }
    }
 
    /**
/home/mastergrace8/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
            $router->middlewareGroup($key, $middleware);
        }
 
        foreach ($this->routeMiddleware as $key => $middleware) {
            $router->aliasMiddleware($key, $middleware);
        }
    }
 
    /**
     * 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 (Exception $e) {
            $this->reportException($e);
 
            $response = $this->renderException($request, $e);
        } catch (Throwable $e) {
            $this->reportException($e = new FatalThrowableError($e));
 
            $response = $this->renderException($request, $e);
        }
 
        $this->app['events']->dispatch(
            new Events\RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
Arguments
  1. Illuminate\Http\Request {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\ParameterBag {#51}
      +query: Symfony\Component\HttpFoundation\ParameterBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\ParameterBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #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
      pathInfo: "/Supplier_registration"
      requestUri: "/Supplier_registration"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    
/home/mastergrace8/public_html/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 {#43
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\ParameterBag {#51}
      +query: Symfony\Component\HttpFoundation\ParameterBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\ParameterBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #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
      pathInfo: "/Supplier_registration"
      requestUri: "/Supplier_registration"
      baseUrl: ""
      basePath: ""
      method: "GET"
      format: "html"
    }
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
CONTEXT_DOCUMENT_ROOT
"/home/mastergrace8/public_html"
CONTEXT_PREFIX
""
DOCUMENT_ROOT
"/home/mastergrace8/public_html"
GATEWAY_INTERFACE
"CGI/1.1"
HTTPS
"on"
HTTP_ACCEPT
"*/*"
HTTP_HOST
"master.grace8.com"
HTTP_USER_AGENT
"claudebot"
HTTP_X_HTTPS
"1"
PATH
"/bin:/usr/bin"
PHP_INI_SCAN_DIR
"/opt/cpanel/ea-php74/root/etc:/opt/cpanel/ea-php74/root/etc/php.d:."
QUERY_STRING
""
REDIRECT_HTTPS
"on"
REDIRECT_SCRIPT_URI
"https://master.grace8.com/Supplier_registration"
REDIRECT_SCRIPT_URL
"/Supplier_registration"
REDIRECT_SSL_TLS_SNI
"master.grace8.com"
REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"ZgVfL83EYN3cs3yaON3bSwAAAIY"
REDIRECT_URL
"/Supplier_registration"
REMOTE_ADDR
"44.202.128.177"
REMOTE_PORT
"47128"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"https"
REQUEST_URI
"/Supplier_registration"
SCRIPT_FILENAME
"/home/mastergrace8/public_html/index.php"
SCRIPT_NAME
"/index.php"
SCRIPT_URI
"https://master.grace8.com/Supplier_registration"
SCRIPT_URL
"/Supplier_registration"
SERVER_ADDR
"67.212.177.130"
SERVER_ADMIN
"webmaster@master.grace8.com"
SERVER_NAME
"master.grace8.com"
SERVER_PORT
"443"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
SSL_TLS_SNI
"master.grace8.com"
TZ
"UTC"
UNIQUE_ID
"ZgVfL83EYN3cs3yaON3bSwAAAIY"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1711628079.56
REQUEST_TIME
1711628079
argv
[]
argc
0
APP_NAME
"Grace8 Master"
APP_ENV
"local"
APP_KEY
"base64:/l70kylTh0zvN0OonXTp0qGe1QhauTYPGTJ/klu7lng="
APP_DEBUG
"true"
APP_URL
"https://master.grace8.com/"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"mastergrace8_master"
DB_USERNAME
"mastergrace8_main"
DB_PASSWORD
"Kp7cmTemx5zAyuy"
DB_CONNECTION1
"CommunityOutreach"
DB_HOST1
"127.0.0.1"
DB_PORT1
"3306"
DB_DATABASE1
"mastergrace8_outreach"
DB_USERNAME1
"mastergrace8_main"
DB_PASSWORD1
"Kp7cmTemx5zAyuy"
DB_CONNECTION2
"Donations"
DB_HOST2
"127.0.0.1"
DB_PORT2
"3306"
DB_DATABASE2
"mastergrace8_donations"
DB_USERNAME2
"mastergrace8_main"
DB_PASSWORD2
"Kp7cmTemx5zAyuy"
DB_CONNECTION3
"employee"
DB_HOST3
"127.0.0.1"
DB_PORT3
"3306"
DB_DATABASE3
"mastergrace8_employee"
DB_USERNAME3
"mastergrace8_main"
DB_PASSWORD3
"Kp7cmTemx5zAyuy"
DB_CONNECTION4
"africa_projects"
DB_HOST4
"127.0.0.1"
DB_PORT4
"3306"
DB_DATABASE4
"mastergrace8_africa_projects"
DB_USERNAME4
"mastergrace8_main"
DB_PASSWORD4
"Kp7cmTemx5zAyuy"
DB_CONNECTION5
"medical"
DB_HOST5
"127.0.0.1"
DB_PORT5
"3306"
DB_DATABASE5
"mastergrace8_medical"
DB_USERNAME5
"mastergrace8_main"
DB_PASSWORD5
"Kp7cmTemx5zAyuy"
DB_CONNECTION6
"suppliers"
DB_HOST6
"127.0.0.1"
DB_PORT6
"3306"
DB_DATABASE6
"mastergrace8_suppliers"
DB_USERNAME6
"mastergrace8_main"
DB_PASSWORD6
"Kp7cmTemx5zAyuy"
DB_CONNECTION7
"procurement"
DB_HOST7
"127.0.0.1"
DB_PORT7
"3306"
DB_DATABASE7
"mastergrace8_procurement"
DB_USERNAME7
"mastergrace8_main"
DB_PASSWORD7
"Kp7cmTemx5zAyuy"
DB_CONNECTION8
"seedbank"
DB_HOST8
"127.0.0.1"
DB_PORT8
"3306"
DB_DATABASE8
"mastergrace8_seedbank"
DB_USERNAME8
"mastergrace8_main"
DB_PASSWORD8
"Kp7cmTemx5zAyuy"
DB_CONNECTION9
"stores"
DB_HOST9
"127.0.0.1"
DB_PORT9
"3306"
DB_DATABASE9
"mastergrace8_stores"
DB_USERNAME9
"mastergrace8_main"
DB_PASSWORD9
"Kp7cmTemx5zAyuy"
DB_CONNECTION10
"cvsystem"
DB_HOST10
"127.0.0.1"
DB_PORT10
"3306"
DB_DATABASE10
"mastergrace8_administrator"
DB_USERNAME10
"mastergrace8_main"
DB_PASSWORD10
"Kp7cmTemx5zAyuy"
DB_HOST11
"127.0.0.1"
DB_PORT11
"3306"
DB_DATABASE11
"mastergrace8_jobs"
DB_CONNECTION12
"fathering"
DB_HOST12
"127.0.0.1"
DB_PORT12
"3306"
DB_DATABASE12
"mastergrace8_fathering"
DB_USERNAME12
"mastergrace8_main"
DB_PASSWORD12
"Kp7cmTemx5zAyuy"
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
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"43302845ff9593"
MAIL_PASSWORD
"ecc608c2c640bb"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
SCOUT_DRIVER
"tntsearch"
Key Value
APP_NAME
"Grace8 Master"
APP_ENV
"local"
APP_KEY
"base64:/l70kylTh0zvN0OonXTp0qGe1QhauTYPGTJ/klu7lng="
APP_DEBUG
"true"
APP_URL
"https://master.grace8.com/"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"mastergrace8_master"
DB_USERNAME
"mastergrace8_main"
DB_PASSWORD
"Kp7cmTemx5zAyuy"
DB_CONNECTION1
"CommunityOutreach"
DB_HOST1
"127.0.0.1"
DB_PORT1
"3306"
DB_DATABASE1
"mastergrace8_outreach"
DB_USERNAME1
"mastergrace8_main"
DB_PASSWORD1
"Kp7cmTemx5zAyuy"
DB_CONNECTION2
"Donations"
DB_HOST2
"127.0.0.1"
DB_PORT2
"3306"
DB_DATABASE2
"mastergrace8_donations"
DB_USERNAME2
"mastergrace8_main"
DB_PASSWORD2
"Kp7cmTemx5zAyuy"
DB_CONNECTION3
"employee"
DB_HOST3
"127.0.0.1"
DB_PORT3
"3306"
DB_DATABASE3
"mastergrace8_employee"
DB_USERNAME3
"mastergrace8_main"
DB_PASSWORD3
"Kp7cmTemx5zAyuy"
DB_CONNECTION4
"africa_projects"
DB_HOST4
"127.0.0.1"
DB_PORT4
"3306"
DB_DATABASE4
"mastergrace8_africa_projects"
DB_USERNAME4
"mastergrace8_main"
DB_PASSWORD4
"Kp7cmTemx5zAyuy"
DB_CONNECTION5
"medical"
DB_HOST5
"127.0.0.1"
DB_PORT5
"3306"
DB_DATABASE5
"mastergrace8_medical"
DB_USERNAME5
"mastergrace8_main"
DB_PASSWORD5
"Kp7cmTemx5zAyuy"
DB_CONNECTION6
"suppliers"
DB_HOST6
"127.0.0.1"
DB_PORT6
"3306"
DB_DATABASE6
"mastergrace8_suppliers"
DB_USERNAME6
"mastergrace8_main"
DB_PASSWORD6
"Kp7cmTemx5zAyuy"
DB_CONNECTION7
"procurement"
DB_HOST7
"127.0.0.1"
DB_PORT7
"3306"
DB_DATABASE7
"mastergrace8_procurement"
DB_USERNAME7
"mastergrace8_main"
DB_PASSWORD7
"Kp7cmTemx5zAyuy"
DB_CONNECTION8
"seedbank"
DB_HOST8
"127.0.0.1"
DB_PORT8
"3306"
DB_DATABASE8
"mastergrace8_seedbank"
DB_USERNAME8
"mastergrace8_main"
DB_PASSWORD8
"Kp7cmTemx5zAyuy"
DB_CONNECTION9
"stores"
DB_HOST9
"127.0.0.1"
DB_PORT9
"3306"
DB_DATABASE9
"mastergrace8_stores"
DB_USERNAME9
"mastergrace8_main"
DB_PASSWORD9
"Kp7cmTemx5zAyuy"
DB_CONNECTION10
"cvsystem"
DB_HOST10
"127.0.0.1"
DB_PORT10
"3306"
DB_DATABASE10
"mastergrace8_administrator"
DB_USERNAME10
"mastergrace8_main"
DB_PASSWORD10
"Kp7cmTemx5zAyuy"
DB_HOST11
"127.0.0.1"
DB_PORT11
"3306"
DB_DATABASE11
"mastergrace8_jobs"
DB_CONNECTION12
"fathering"
DB_HOST12
"127.0.0.1"
DB_PORT12
"3306"
DB_DATABASE12
"mastergrace8_fathering"
DB_USERNAME12
"mastergrace8_main"
DB_PASSWORD12
"Kp7cmTemx5zAyuy"
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
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"43302845ff9593"
MAIL_PASSWORD
"ecc608c2c640bb"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
SCOUT_DRIVER
"tntsearch"
0. Whoops\Handler\PrettyPageHandler