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