Current directory: /home/codebudd/ellaya.codebuddys.in/config Login - Ellaya
auth-login-cover auth-login-cover

Welcome to Ellaya 👋

Please sign-in to your account and start the adventure

@if (session('error'))
{{ session('error') }}
@endif
@csrf

Forgot Password?

New on our platform? Create an account

or
A facade root has not been set. (500 Internal Server Error)

Symfony Exception

RuntimeException

HTTP 500 Internal Server Error

A facade root has not been set.

Exception

RuntimeException

  1. public static function __callStatic($method, $args)
  2. {
  3. $instance = static::getFacadeRoot();
  4. if (! $instance) {
  5. throw new RuntimeException('A facade root has not been set.');
  6. }
  7. return $instance->$method(...$args);
  8. }
  9. }
Facade::__callStatic() in /home/codebudd/ellaya.codebuddys.in/config/web.php (line 32)
  1. | contains the "web" middleware group. Now create something great!
  2. |
  3. */
  4. // Redirect the root URL to the login page
  5. Route::get('/', function () {
  6. return redirect()->route('login');
  7. });
  1. if (! isset($files['app'])) {
  2. throw new Exception('Unable to load the "app" configuration file.');
  3. }
  4. foreach ($files as $key => $path) {
  5. $repository->set($key, require $path);
  6. }
  7. }
  8. /**
  9. * Get all of the configuration files for the application.
  1. // directory and load each one into the repository. This will make all of the
  2. // options available to the developer for use in various parts of this app.
  3. $app->instance('config', $config = new Repository($items));
  4. if (! isset($loadedFromCache)) {
  5. $this->loadConfigurationFiles($app, $config);
  6. }
  7. // Finally, we will set the application's environment based on the configuration
  8. // values that were loaded. We will pass a callback which will be used to get
  9. // the environment in a web context where an "--env" switch is not present.
  1. $this->hasBeenBootstrapped = true;
  2. foreach ($bootstrappers as $bootstrapper) {
  3. $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
  4. $this->make($bootstrapper)->bootstrap($this);
  5. $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
  6. }
  7. }
  1. * @return void
  2. */
  3. public function bootstrap()
  4. {
  5. if (! $this->app->hasBeenBootstrapped()) {
  6. $this->app->bootstrapWith($this->bootstrappers());
  7. }
  8. }
  9. /**
  10. * Get the route dispatcher callback.
  1. {
  2. $this->app->instance('request', $request);
  3. Facade::clearResolvedInstance('request');
  4. $this->bootstrap();
  5. return (new Pipeline($this->app))
  6. ->send($request)
  7. ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  8. ->then($this->dispatchToRouter());
  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. }
  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

RuntimeException
RuntimeException:
A facade root has not been set.

  at /home/codebudd/ellaya.codebuddys.in/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php:335
  at Illuminate\Support\Facades\Facade::__callStatic()
     (/home/codebudd/ellaya.codebuddys.in/config/web.php:32)
  at require('/home/codebudd/ellaya.codebuddys.in/config/web.php')
     (/home/codebudd/ellaya.codebuddys.in/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php:70)
  at Illuminate\Foundation\Bootstrap\LoadConfiguration->loadConfigurationFiles()
     (/home/codebudd/ellaya.codebuddys.in/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php:39)
  at Illuminate\Foundation\Bootstrap\LoadConfiguration->bootstrap()
     (/home/codebudd/ellaya.codebuddys.in/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:265)
  at Illuminate\Foundation\Application->bootstrapWith()
     (/home/codebudd/ellaya.codebuddys.in/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:176)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/home/codebudd/ellaya.codebuddys.in/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:160)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/codebudd/ellaya.codebuddys.in/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:134)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/codebudd/ellaya.codebuddys.in/index.php:58)