Symfony Exception

InvalidArgumentException

HTTP 500 Internal Server Error

Please provide a valid cache path.

Exception

InvalidArgumentException

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

Stack Trace

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)