Symfony Exception

ErrorException

HTTP 500 Internal Server Error

file_put_contents(/workspace/storage/framework/views/2a98eeff0cae927024d564b8c0e0d25e.php): Failed to open stream: Read-only file system

Exception

ErrorException

Show exception properties
ErrorException {#298
  #severity: E_WARNING
}
  1. * @param bool $lock
  2. * @return int|bool
  3. */
  4. public function put($path, $contents, $lock = false)
  5. {
  6. return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
  7. }
  8. /**
  9. * Write the contents of a file, replacing it atomically if it already exists.
  10. *
  1. * @return callable
  2. */
  3. protected function forwardsTo($method)
  4. {
  5. return fn (...$arguments) => static::$app
  6. ? $this->{$method}(...$arguments)
  7. : false;
  8. }
  9. /**
  10. * Determine if the error level is a deprecation.
HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}(2, 'file_put_contents(/workspace/storage/framework/views/2a98eeff0cae927024d564b8c0e0d25e.php): Failed to open stream: Read-only file system', '/workspace/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php', 204)
  1. * @param bool $lock
  2. * @return int|bool
  3. */
  4. public function put($path, $contents, $lock = false)
  5. {
  6. return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
  7. }
  8. /**
  9. * Write the contents of a file, replacing it atomically if it already exists.
  10. *
  1. $this->ensureCompiledDirectoryExists(
  2. $compiledPath = $this->getCompiledPath($this->getPath())
  3. );
  4. if (! $this->files->exists($compiledPath)) {
  5. $this->files->put($compiledPath, $contents);
  6. return;
  7. }
  8. $compiledHash = $this->files->hash($compiledPath, 'xxh128');
  1. // If this given view has expired, which means it has simply been edited since
  2. // it was last compiled, we will re-compile the views so we can evaluate a
  3. // fresh copy of the view. We'll pass the compiler the path of the view.
  4. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) {
  5. $this->compiler->compile($path);
  6. }
  7. // Once we have the path to the compiled file, we will evaluate the paths with
  8. // typical PHP just like any other templates. We also keep a stack of views
  9. // which have been rendered for right exception messages to be generated.
  1. *
  2. * @return string
  3. */
  4. protected function getContents()
  5. {
  6. return $this->engine->get($this->path, $this->gatherData());
  7. }
  8. /**
  9. * Get the data bound to the view instance.
  10. *
  1. // clear out the sections for any separate views that may be rendered.
  2. $this->factory->incrementRender();
  3. $this->factory->callComposer($this);
  4. $contents = $this->getContents();
  5. // Once we've finished rendering the view, we'll decrement the render count
  6. // so that each section gets flushed out next time a view is created and
  7. // no old sections are staying around in the memory of an environment.
  8. $this->factory->decrementRender();
  1. * @throws \Throwable
  2. */
  3. public function render(?callable $callback = null)
  4. {
  5. try {
  6. $contents = $this->renderContents();
  7. $response = isset($callback) ? $callback($this, $contents) : null;
  8. // Once we have the contents of the view, we will flush the sections if we are
  9. // done rendering all views so that there is nothing left hanging over when
  1. $this->htmlErrorRenderer->render($throwable),
  2. );
  3. return $this->viewFactory->make('laravel-exceptions-renderer::show', [
  4. 'exception' => new Exception($flattenException, $request, $this->listener, $this->basePath),
  5. ])->render();
  6. }
  7. /**
  8. * Get the renderer's CSS content.
  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. * @param \Throwable $e
  2. * @return void
  3. */
  4. protected function renderHttpResponse(Throwable $e)
  5. {
  6. $this->getExceptionHandler()->render(static::$app['request'], $e)->send();
  7. }
  8. /**
  9. * Handle the PHP shutdown event.
  10. *
  1. if ($exceptionHandlerFailed ?? false) {
  2. exit(1);
  3. }
  4. } else {
  5. $this->renderHttpResponse($e);
  6. }
  7. }
  8. /**
  9. * Render an exception to the console.
  1. * @return callable
  2. */
  3. protected function forwardsTo($method)
  4. {
  5. return fn (...$arguments) => static::$app
  6. ? $this->{$method}(...$arguments)
  7. : false;
  8. }
  9. /**
  10. * Determine if the error level is a deprecation.
HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}(object(UnexpectedValueException))

Stack Trace

ErrorException
ErrorException:
file_put_contents(/workspace/storage/framework/views/2a98eeff0cae927024d564b8c0e0d25e.php): Failed to open stream: Read-only file system

  at /workspace/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:204
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'file_put_contents(/workspace/storage/framework/views/2a98eeff0cae927024d564b8c0e0d25e.php): Failed to open stream: Read-only file system', '/workspace/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php', 204)
     (/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:256)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}(2, 'file_put_contents(/workspace/storage/framework/views/2a98eeff0cae927024d564b8c0e0d25e.php): Failed to open stream: Read-only file system', '/workspace/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php', 204)
  at file_put_contents('/workspace/storage/framework/views/2a98eeff0cae927024d564b8c0e0d25e.php', '<?php if (isset($component)) { $__componentOriginalbbd4eeea836234825f7514ed20d2d52d = $component; } ?><?php if (isset($attributes)) { $__attributesOriginalbbd4eeea836234825f7514ed20d2d52d = $attributes; } ?><?php $component = Illuminate\\View\\AnonymousComponent::resolve([\'view\' => \'laravel-exceptions-renderer::components.layout\',\'data\' => [\'exception\' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag ? $attributes->all() : [])); ?><?php $component->withName(\'laravel-exceptions-renderer::layout\'); ?><?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\\Illuminate\\View\\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes([\'exception\' => \\Illuminate\\View\\Compilers\\BladeCompiler::sanitizeComponentAttribute($exception)]); ?>    <div class="renderer container mx-auto lg:px-8">        <?php if (isset($component)) { $__componentOriginal10cd8b81fdad4ce00a06c99f27003014 = $component; } ?><?php if (isset($attributes)) { $__attributesOriginal10cd8b81fdad4ce00a06c99f27003014 = $attributes; } ?><?php $component = Illuminate\\View\\AnonymousComponent::resolve([\'view\' => \'laravel-exceptions-renderer::components.navigation\',\'data\' => [\'exception\' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag ? $attributes->all() : [])); ?><?php $component->withName(\'laravel-exceptions-renderer::navigation\'); ?><?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\\Illuminate\\View\\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes([\'exception\' => \\Illuminate\\View\\Compilers\\BladeCompiler::sanitizeComponentAttribute($exception)]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal10cd8b81fdad4ce00a06c99f27003014)): ?><?php $attributes = $__attributesOriginal10cd8b81fdad4ce00a06c99f27003014; ?><?php unset($__attributesOriginal10cd8b81fdad4ce00a06c99f27003014); ?><?php endif; ?><?php if (isset($__componentOriginal10cd8b81fdad4ce00a06c99f27003014)): ?><?php $component = $__componentOriginal10cd8b81fdad4ce00a06c99f27003014; ?><?php unset($__componentOriginal10cd8b81fdad4ce00a06c99f27003014); ?><?php endif; ?>        <main class="px-6 pb-12 pt-6">            <div class="container mx-auto">                <?php if (isset($component)) { $__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557 = $component; } ?><?php if (isset($attributes)) { $__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557 = $attributes; } ?><?php $component = Illuminate\\View\\AnonymousComponent::resolve([\'view\' => \'laravel-exceptions-renderer::components.header\',\'data\' => [\'exception\' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag ? $attributes->all() : [])); ?><?php $component->withName(\'laravel-exceptions-renderer::header\'); ?><?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\\Illuminate\\View\\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes([\'exception\' => \\Illuminate\\View\\Compilers\\BladeCompiler::sanitizeComponentAttribute($exception)]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557)): ?><?php $attributes = $__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557; ?><?php unset($__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557); ?><?php endif; ?><?php if (isset($__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557)): ?><?php $component = $__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557; ?><?php unset($__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557); ?><?php endif; ?>                <?php if (isset($component)) { $__componentOriginal1dc7d865c9b6045c4d68faf8bde572ed = $component; } ?><?php if (isset($attributes)) { $__attributesOriginal1dc7d865c9b6045c4d68faf8bde572ed = $attributes; } ?><?php $component = Illuminate\\View\\AnonymousComponent::resolve([\'view\' => \'laravel-exceptions-renderer::components.trace-and-editor\',\'data\' => [\'exception\' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag ? $attributes->all() : [])); ?><?php $component->withName(\'laravel-exceptions-renderer::trace-and-editor\'); ?><?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\\Illuminate\\View\\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes([\'exception\' => \\Illuminate\\View\\Compilers\\BladeCompiler::sanitizeComponentAttribute($exception)]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal1dc7d865c9b6045c4d68faf8bde572ed)): ?><?php $attributes = $__attributesOriginal1dc7d865c9b6045c4d68faf8bde572ed; ?><?php unset($__attributesOriginal1dc7d865c9b6045c4d68faf8bde572ed); ?><?php endif; ?><?php if (isset($__componentOriginal1dc7d865c9b6045c4d68faf8bde572ed)): ?><?php $component = $__componentOriginal1dc7d865c9b6045c4d68faf8bde572ed; ?><?php unset($__componentOriginal1dc7d865c9b6045c4d68faf8bde572ed); ?><?php endif; ?>                <?php if (isset($component)) { $__componentOriginal523928ff754f95aea6faf87444393a04 = $component; } ?><?php if (isset($attributes)) { $__attributesOriginal523928ff754f95aea6faf87444393a04 = $attributes; } ?><?php $component = Illuminate\\View\\AnonymousComponent::resolve([\'view\' => \'laravel-exceptions-renderer::components.context\',\'data\' => [\'exception\' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag ? $attributes->all() : [])); ?><?php $component->withName(\'laravel-exceptions-renderer::context\'); ?><?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\\Illuminate\\View\\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes([\'exception\' => \\Illuminate\\View\\Compilers\\BladeCompiler::sanitizeComponentAttribute($exception)]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal523928ff754f95aea6faf87444393a04)): ?><?php $attributes = $__attributesOriginal523928ff754f95aea6faf87444393a04; ?><?php unset($__attributesOriginal523928ff754f95aea6faf87444393a04); ?><?php endif; ?><?php if (isset($__componentOriginal523928ff754f95aea6faf87444393a04)): ?><?php $component = $__componentOriginal523928ff754f95aea6faf87444393a04; ?><?php unset($__componentOriginal523928ff754f95aea6faf87444393a04); ?><?php endif; ?>            </div>        </main>    </div> <?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginalbbd4eeea836234825f7514ed20d2d52d)): ?><?php $attributes = $__attributesOriginalbbd4eeea836234825f7514ed20d2d52d; ?><?php unset($__attributesOriginalbbd4eeea836234825f7514ed20d2d52d); ?><?php endif; ?><?php if (isset($__componentOriginalbbd4eeea836234825f7514ed20d2d52d)): ?><?php $component = $__componentOriginalbbd4eeea836234825f7514ed20d2d52d; ?><?php unset($__componentOriginalbbd4eeea836234825f7514ed20d2d52d); ?><?php endif; ?><?php /**PATH /workspace/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/show.blade.php ENDPATH**/ ?>', 0)
     (/workspace/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:204)
  at Illuminate\Filesystem\Filesystem->put('/workspace/storage/framework/views/2a98eeff0cae927024d564b8c0e0d25e.php', '<?php if (isset($component)) { $__componentOriginalbbd4eeea836234825f7514ed20d2d52d = $component; } ?><?php if (isset($attributes)) { $__attributesOriginalbbd4eeea836234825f7514ed20d2d52d = $attributes; } ?><?php $component = Illuminate\\View\\AnonymousComponent::resolve([\'view\' => \'laravel-exceptions-renderer::components.layout\',\'data\' => [\'exception\' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag ? $attributes->all() : [])); ?><?php $component->withName(\'laravel-exceptions-renderer::layout\'); ?><?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\\Illuminate\\View\\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes([\'exception\' => \\Illuminate\\View\\Compilers\\BladeCompiler::sanitizeComponentAttribute($exception)]); ?>    <div class="renderer container mx-auto lg:px-8">        <?php if (isset($component)) { $__componentOriginal10cd8b81fdad4ce00a06c99f27003014 = $component; } ?><?php if (isset($attributes)) { $__attributesOriginal10cd8b81fdad4ce00a06c99f27003014 = $attributes; } ?><?php $component = Illuminate\\View\\AnonymousComponent::resolve([\'view\' => \'laravel-exceptions-renderer::components.navigation\',\'data\' => [\'exception\' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag ? $attributes->all() : [])); ?><?php $component->withName(\'laravel-exceptions-renderer::navigation\'); ?><?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\\Illuminate\\View\\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes([\'exception\' => \\Illuminate\\View\\Compilers\\BladeCompiler::sanitizeComponentAttribute($exception)]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal10cd8b81fdad4ce00a06c99f27003014)): ?><?php $attributes = $__attributesOriginal10cd8b81fdad4ce00a06c99f27003014; ?><?php unset($__attributesOriginal10cd8b81fdad4ce00a06c99f27003014); ?><?php endif; ?><?php if (isset($__componentOriginal10cd8b81fdad4ce00a06c99f27003014)): ?><?php $component = $__componentOriginal10cd8b81fdad4ce00a06c99f27003014; ?><?php unset($__componentOriginal10cd8b81fdad4ce00a06c99f27003014); ?><?php endif; ?>        <main class="px-6 pb-12 pt-6">            <div class="container mx-auto">                <?php if (isset($component)) { $__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557 = $component; } ?><?php if (isset($attributes)) { $__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557 = $attributes; } ?><?php $component = Illuminate\\View\\AnonymousComponent::resolve([\'view\' => \'laravel-exceptions-renderer::components.header\',\'data\' => [\'exception\' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag ? $attributes->all() : [])); ?><?php $component->withName(\'laravel-exceptions-renderer::header\'); ?><?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\\Illuminate\\View\\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes([\'exception\' => \\Illuminate\\View\\Compilers\\BladeCompiler::sanitizeComponentAttribute($exception)]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557)): ?><?php $attributes = $__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557; ?><?php unset($__attributesOriginal1e817eb3c41fe3ea9eb0c15213c4b557); ?><?php endif; ?><?php if (isset($__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557)): ?><?php $component = $__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557; ?><?php unset($__componentOriginal1e817eb3c41fe3ea9eb0c15213c4b557); ?><?php endif; ?>                <?php if (isset($component)) { $__componentOriginal1dc7d865c9b6045c4d68faf8bde572ed = $component; } ?><?php if (isset($attributes)) { $__attributesOriginal1dc7d865c9b6045c4d68faf8bde572ed = $attributes; } ?><?php $component = Illuminate\\View\\AnonymousComponent::resolve([\'view\' => \'laravel-exceptions-renderer::components.trace-and-editor\',\'data\' => [\'exception\' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag ? $attributes->all() : [])); ?><?php $component->withName(\'laravel-exceptions-renderer::trace-and-editor\'); ?><?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\\Illuminate\\View\\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes([\'exception\' => \\Illuminate\\View\\Compilers\\BladeCompiler::sanitizeComponentAttribute($exception)]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal1dc7d865c9b6045c4d68faf8bde572ed)): ?><?php $attributes = $__attributesOriginal1dc7d865c9b6045c4d68faf8bde572ed; ?><?php unset($__attributesOriginal1dc7d865c9b6045c4d68faf8bde572ed); ?><?php endif; ?><?php if (isset($__componentOriginal1dc7d865c9b6045c4d68faf8bde572ed)): ?><?php $component = $__componentOriginal1dc7d865c9b6045c4d68faf8bde572ed; ?><?php unset($__componentOriginal1dc7d865c9b6045c4d68faf8bde572ed); ?><?php endif; ?>                <?php if (isset($component)) { $__componentOriginal523928ff754f95aea6faf87444393a04 = $component; } ?><?php if (isset($attributes)) { $__attributesOriginal523928ff754f95aea6faf87444393a04 = $attributes; } ?><?php $component = Illuminate\\View\\AnonymousComponent::resolve([\'view\' => \'laravel-exceptions-renderer::components.context\',\'data\' => [\'exception\' => $exception]] + (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag ? $attributes->all() : [])); ?><?php $component->withName(\'laravel-exceptions-renderer::context\'); ?><?php if ($component->shouldRender()): ?><?php $__env->startComponent($component->resolveView(), $component->data()); ?><?php if (isset($attributes) && $attributes instanceof Illuminate\\View\\ComponentAttributeBag): ?><?php $attributes = $attributes->except(\\Illuminate\\View\\AnonymousComponent::ignoredParameterNames()); ?><?php endif; ?><?php $component->withAttributes([\'exception\' => \\Illuminate\\View\\Compilers\\BladeCompiler::sanitizeComponentAttribute($exception)]); ?><?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginal523928ff754f95aea6faf87444393a04)): ?><?php $attributes = $__attributesOriginal523928ff754f95aea6faf87444393a04; ?><?php unset($__attributesOriginal523928ff754f95aea6faf87444393a04); ?><?php endif; ?><?php if (isset($__componentOriginal523928ff754f95aea6faf87444393a04)): ?><?php $component = $__componentOriginal523928ff754f95aea6faf87444393a04; ?><?php unset($__componentOriginal523928ff754f95aea6faf87444393a04); ?><?php endif; ?>            </div>        </main>    </div> <?php echo $__env->renderComponent(); ?><?php endif; ?><?php if (isset($__attributesOriginalbbd4eeea836234825f7514ed20d2d52d)): ?><?php $attributes = $__attributesOriginalbbd4eeea836234825f7514ed20d2d52d; ?><?php unset($__attributesOriginalbbd4eeea836234825f7514ed20d2d52d); ?><?php endif; ?><?php if (isset($__componentOriginalbbd4eeea836234825f7514ed20d2d52d)): ?><?php $component = $__componentOriginalbbd4eeea836234825f7514ed20d2d52d; ?><?php unset($__componentOriginalbbd4eeea836234825f7514ed20d2d52d); ?><?php endif; ?><?php /**PATH /workspace/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/show.blade.php ENDPATH**/ ?>')
     (/workspace/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php:198)
  at Illuminate\View\Compilers\BladeCompiler->compile('/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/show.blade.php')
     (/workspace/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:68)
  at Illuminate\View\Engines\CompilerEngine->get('/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Providers/../resources/exceptions/renderer/show.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'exception' => object(Exception)))
     (/workspace/vendor/laravel/framework/src/Illuminate/View/View.php:208)
  at Illuminate\View\View->getContents()
     (/workspace/vendor/laravel/framework/src/Illuminate/View/View.php:191)
  at Illuminate\View\View->renderContents()
     (/workspace/vendor/laravel/framework/src/Illuminate/View/View.php:160)
  at Illuminate\View\View->render()
     (/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Renderer/Renderer.php:94)
  at Illuminate\Foundation\Exceptions\Renderer\Renderer->render(object(Request), object(UnexpectedValueException))
     (/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:850)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(UnexpectedValueException))
     (/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:831)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(UnexpectedValueException))
     (/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:810)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(UnexpectedValueException))
     (/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:709)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse(object(Request), object(UnexpectedValueException))
     (/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:597)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(UnexpectedValueException))
     (/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:219)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->renderHttpResponse(object(UnexpectedValueException))
     (/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:196)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleException(object(UnexpectedValueException))
     (/workspace/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:256)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}(object(UnexpectedValueException))