Current directory: /home/codebudd/ellaya.codebuddys.in/config
Please sign-in to your account and start the adventure
@if (session('error'))New on our platform? Create an account
public static function __callStatic($method, $args) { $instance = static::getFacadeRoot(); if (! $instance) { throw new RuntimeException('A facade root has not been set.'); } return $instance->$method(...$args); }}| contains the "web" middleware group. Now create something great!|*/// Redirect the root URL to the login pageRoute::get('/', function () { return redirect()->route('login');}); if (! isset($files['app'])) { throw new Exception('Unable to load the "app" configuration file.'); } foreach ($files as $key => $path) { $repository->set($key, require $path); } } /** * Get all of the configuration files for the application. // directory and load each one into the repository. This will make all of the // options available to the developer for use in various parts of this app. $app->instance('config', $config = new Repository($items)); if (! isset($loadedFromCache)) { $this->loadConfigurationFiles($app, $config); } // Finally, we will set the application's environment based on the configuration // values that were loaded. We will pass a callback which will be used to get // the environment in a web context where an "--env" switch is not present. $this->hasBeenBootstrapped = true; foreach ($bootstrappers as $bootstrapper) { $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]); $this->make($bootstrapper)->bootstrap($this); $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]); } } * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } /** * Get the route dispatcher callback. { $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()); $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); }$app = require_once __DIR__.'/bootstrap/app.php';$kernel = $app->make(Kernel::class);$response = $kernel->handle( $request = Request::capture())->send();$kernel->terminate($request, $response);|
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)
|