$shouldCache = true, $compiledExtension = 'php', $shouldCheckTimestamps = true, ) { if (! $cachePath) { throw new InvalidArgumentException('Please provide a valid cache path.'); } $this->files = $files; $this->cachePath = $cachePath; $this->basePath = $basePath; * @return void */ public function registerBladeCompiler() { $this->app->singleton('blade.compiler', function ($app) { return tap(new BladeCompiler( $app['files'], $app['config']['view.compiled'], $app['config']->get('view.relative_hash', false) ? $app->basePath() : '', $app['config']->get('view.cache', true), $app['config']->get('view.compiled_extension', 'php'), // used as resolvers for more fine-tuned resolution of these objects. if ($concrete instanceof Closure) { $this->buildStack[] = spl_object_hash($concrete); try { return $concrete($this, $this->getLastParameterOverride()); } finally { array_pop($this->buildStack); } } // We're ready to instantiate an instance of the concrete type registered for // the binding. This will instantiate the types, as well as resolve any of // its "nested" dependencies recursively until all have gotten resolved. $object = $this->isBuildable($concrete, $abstract) ? $this->build($concrete) : $this->make($concrete); // If we defined any extenders for this type, we'll need to spin through them // and apply them to the object being built. This allows for the extension // of services, such as changing configuration or decorating the object. */ protected function resolve($abstract, $parameters = [], $raiseEvents = true) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::resolve($abstract, $parameters, $raiseEvents); } /** * Load the deferred provider if the given type is a deferred service and the instance has not been loaded. * * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { return $this->resolve($abstract, $parameters); } /** * {@inheritdoc} * */ public function make($abstract, array $parameters = []) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::make($abstract, $parameters); } /** * Resolve the given type from the container. * } try { return $parameter->isVariadic() ? $this->resolveVariadicClass($parameter) : $this->make($className); } // If we can not resolve the class instance, we will check to see if the value // is variadic. If it is, we will return an empty array as the value of the // dependency similarly to how we handle scalar values in this situation. // If the class is null, it means the dependency is a string or some other // primitive type which we can not resolve since it is not a class and // we will just bomb out with an error since we have no-where to go. $result ??= is_null(Util::getParameterClassName($dependency)) ? $this->resolvePrimitive($dependency) : $this->resolveClass($dependency); $this->fireAfterResolvingAttributeCallbacks($dependency->getAttributes(), $result); if ($dependency->isVariadic()) { $results = array_merge($results, $result); // Once we have all the constructor's parameters we can create each of the // dependency instances and then use the reflection instances to make a // new instance of this class, injecting the created dependencies in. try { $instances = $this->resolveDependencies($dependencies); } catch (BindingResolutionException $e) { array_pop($this->buildStack); throw $e; } // We're ready to instantiate an instance of the concrete type registered for // the binding. This will instantiate the types, as well as resolve any of // its "nested" dependencies recursively until all have gotten resolved. $object = $this->isBuildable($concrete, $abstract) ? $this->build($concrete) : $this->make($concrete); // If we defined any extenders for this type, we'll need to spin through them // and apply them to the object being built. This allows for the extension // of services, such as changing configuration or decorating the object. */ protected function resolve($abstract, $parameters = [], $raiseEvents = true) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::resolve($abstract, $parameters, $raiseEvents); } /** * Load the deferred provider if the given type is a deferred service and the instance has not been loaded. * * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { return $this->resolve($abstract, $parameters); } /** * {@inheritdoc} * */ public function make($abstract, array $parameters = []) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::make($abstract, $parameters); } /** * Resolve the given type from the container. * return new Renderer( $app->make(Factory::class), $app->make(Listener::class), $errorRenderer, $app->make(BladeMapper::class), $app->basePath(), ); }); $this->app->singleton(Listener::class); // used as resolvers for more fine-tuned resolution of these objects. if ($concrete instanceof Closure) { $this->buildStack[] = spl_object_hash($concrete); try { return $concrete($this, $this->getLastParameterOverride()); } finally { array_pop($this->buildStack); } } // We're ready to instantiate an instance of the concrete type registered for // the binding. This will instantiate the types, as well as resolve any of // its "nested" dependencies recursively until all have gotten resolved. $object = $this->isBuildable($concrete, $abstract) ? $this->build($concrete) : $this->make($concrete); // If we defined any extenders for this type, we'll need to spin through them // and apply them to the object being built. This allows for the extension // of services, such as changing configuration or decorating the object. */ protected function resolve($abstract, $parameters = [], $raiseEvents = true) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::resolve($abstract, $parameters, $raiseEvents); } /** * Load the deferred provider if the given type is a deferred service and the instance has not been loaded. * * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { return $this->resolve($abstract, $parameters); } /** * {@inheritdoc} * */ public function make($abstract, array $parameters = []) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::make($abstract, $parameters); } /** * Resolve the given type from the container. * try { if (config('app.debug')) { if (app()->has(ExceptionRenderer::class)) { return $this->renderExceptionWithCustomRenderer($e); } elseif ($this->container->bound(Renderer::class)) { return $this->container->make(Renderer::class)->render(request(), $e); } } return $this->renderExceptionWithSymfony($e, config('app.debug')); } catch (Throwable $e) { * @return \Symfony\Component\HttpFoundation\Response */ protected function convertExceptionToResponse(Throwable $e) { return new SymfonyResponse( $this->renderExceptionContent($e), $this->isHttpException($e) ? $e->getStatusCode() : 500, $this->isHttpException($e) ? $e->getHeaders() : [] ); } * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse */ protected function prepareResponse($request, Throwable $e) { if (! $this->isHttpException($e) && config('app.debug')) { return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e)->prepare($request); } if (! $this->isHttpException($e)) { $e = new HttpException(500, $e->getMessage(), $e); } */ protected function renderExceptionResponse($request, Throwable $e) { return $this->shouldReturnJson($request, $e) ? $this->prepareJsonResponse($request, $e) : $this->prepareResponse($request, $e); } /** * Convert an authentication exception into a response. * return $this->finalizeRenderedResponse($request, match (true) { $e instanceof HttpResponseException => $e->getResponse(), $e instanceof AuthenticationException => $this->unauthenticated($request, $e), $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e, $request), default => $this->renderExceptionResponse($request, $e), }, $e); } /** * Prepare the final, rendered response to be returned to the browser. $handler = $this->container->make(ExceptionHandler::class); $handler->report($e); $response = $handler->render($passable, $e); if (is_object($response) && method_exists($response, 'withException')) { $response->withException($e); } ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); * @param \Closure $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } /** * Decrypt the cookies on the request. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); ); try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** $request->setRouteResolver(fn () => $route); $this->events->dispatch(new RouteMatched($route, $request)); return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } /** * Run the given route within a Stack "onion" instance. * @param \Illuminate\Http\Request $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request)); } /** * Find the route matching a given request. * */ public function dispatch(Request $request) { $this->currentRequest = $request; return $this->dispatchToRoute($request); } /** * Dispatch the request to a route and return the response. * protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); return $this->router->dispatch($request); }; } /** * Call the terminate method on any terminable middleware. */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } { $requestPath = rawurldecode(ltrim($request->getPathInfo(), '/')); $file = public_path($requestPath); if (! in_array($requestPath, Config::get('bref.assets', [])) || ! file_exists($file)) { return $next($request); } return Response::make(file_get_contents($file), 200, [ 'Cache-Control' => 'public', 'Content-Type' => $this->getMimeType($file), // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } return $next($request); } /** * Determine the server 'post_max_size' as bytes. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); null, $this->getHeaders($data) ); } return $next($request); } /** * Determine if the incoming request has a maintenance mode bypass cookie. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } $this->cors->setOptions($this->container['config']->get('cors', [])); if ($this->cors->isPreflightRequest($request)) { // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); * @param \Closure $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } /** * Invoke the deferred callbacks. * // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } return $next($request); }} // since the object we're given was already a fully instantiated object. $parameters = [$passable, $stack]; } $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); ); try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } $this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } /** * Bootstrap the application for HTTP requests. * $this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); } */ public function handleRequest(Request $request) { $kernel = $this->make(HttpKernelContract::class); $response = $kernel->handle($request)->send(); $kernel->terminate($request, $response); } /**// Bootstrap Laravel and handle the request.../** @var Application $app */$app = require_once __DIR__.'/../bootstrap/app.php';$app->handleRequest(Request::capture());|
InvalidArgumentException
|
|---|
InvalidArgumentException:
Please provide a valid cache path.
at /var/www/html/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:75
at Illuminate\View\Compilers\Compiler->__construct(object(Filesystem), false, '', true, 'php', true)
(/var/www/html/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php:97)
at Illuminate\View\ViewServiceProvider->{closure:Illuminate\View\ViewServiceProvider::registerBladeCompiler():96}(object(Application), array())
(/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:1115)
at Illuminate\Container\Container->build(object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:933)
at Illuminate\Container\Container->resolve('blade.compiler', array(), true)
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1078)
at Illuminate\Foundation\Application->resolve('blade.compiler', array())
(/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:864)
at Illuminate\Container\Container->make('blade.compiler', array())
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1058)
at Illuminate\Foundation\Application->make('blade.compiler')
(/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:1340)
at Illuminate\Container\Container->resolveClass(object(ReflectionParameter))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:1241)
at Illuminate\Container\Container->resolveDependencies(array(object(ReflectionParameter), object(ReflectionParameter)))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:1162)
at Illuminate\Container\Container->build('Illuminate\\Foundation\\Exceptions\\Renderer\\Mappers\\BladeMapper')
(/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:933)
at Illuminate\Container\Container->resolve('Illuminate\\Foundation\\Exceptions\\Renderer\\Mappers\\BladeMapper', array(), true)
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1078)
at Illuminate\Foundation\Application->resolve('Illuminate\\Foundation\\Exceptions\\Renderer\\Mappers\\BladeMapper', array())
(/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:864)
at Illuminate\Container\Container->make('Illuminate\\Foundation\\Exceptions\\Renderer\\Mappers\\BladeMapper', array())
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1058)
at Illuminate\Foundation\Application->make('Illuminate\\Foundation\\Exceptions\\Renderer\\Mappers\\BladeMapper')
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Providers/FoundationServiceProvider.php:270)
at Illuminate\Foundation\Providers\FoundationServiceProvider->{closure:Illuminate\Foundation\Providers\FoundationServiceProvider::registerExceptionRenderer():261}(object(Application), array())
(/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:1115)
at Illuminate\Container\Container->build(object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:933)
at Illuminate\Container\Container->resolve('Illuminate\\Foundation\\Exceptions\\Renderer\\Renderer', array(), true)
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1078)
at Illuminate\Foundation\Application->resolve('Illuminate\\Foundation\\Exceptions\\Renderer\\Renderer', array())
(/var/www/html/vendor/laravel/framework/src/Illuminate/Container/Container.php:864)
at Illuminate\Container\Container->make('Illuminate\\Foundation\\Exceptions\\Renderer\\Renderer', array())
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1058)
at Illuminate\Foundation\Application->make('Illuminate\\Foundation\\Exceptions\\Renderer\\Renderer')
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:879)
at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(QueryException))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:860)
at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(QueryException))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:839)
at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(QueryException))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:738)
at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse(object(Request), object(QueryException))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:626)
at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(QueryException))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
at Illuminate\Routing\Pipeline->handleException(object(Request), object(QueryException))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:224)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:36)
at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:74)
at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821)
at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:800)
at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:764)
at Illuminate\Routing\Router->dispatchToRoute(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:753)
at Illuminate\Routing\Router->dispatch(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
at Illuminate\Foundation\Http\Kernel->{closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
at Illuminate\Pipeline\Pipeline->{closure:Illuminate\Pipeline\Pipeline::prepareDestination():178}(object(Request))
(/var/www/html/vendor/bref/laravel-bridge/src/Http/Middleware/ServeStaticAssets.php:26)
at Bref\LaravelBridge\Http\Middleware\ServeStaticAssets->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:51)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:109)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:48)
at Illuminate\Http\Middleware\HandleCors->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:58)
at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php:22)
at Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php:26)
at Illuminate\Http\Middleware\ValidatePathEncoding->handle(object(Request), object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:219)
at Illuminate\Pipeline\Pipeline->{closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195}(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:137)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1220)
at Illuminate\Foundation\Application->handleRequest(object(Request))
(/var/www/html/public/index.php:20)
|