Reserveer nu uw kennismakingszending!
Reserveer nu uw kennismakingszending!
Ja, graag teken ik in op de officiële Nationale Proof Set. Ik ontvang deze unieke Nederlandse muntset nu nog voor de officiële uitgifteprijs van slechts € . De Nationale Proof Set wordt geleverd in de hoogwaardige verzamelcassette. Ik ontvang mijn zending(en) van het Amsterdams MuntKantoor altijd 21 dagen vrijblijvend op zicht.
Symfony Exception
Exceptions 4
Illuminate\View\ ViewException
Show exception properties
Illuminate\View\ViewException {#322 #severity: E_ERROR }
<script>document.addEventListener('DOMContentLoaded', function () {console.log('update price');updatePricesOnPromocode({"code": "<?php echo e($currentPromotionCode->promotiecode); ?>","priceStart": "<?php echo e($currentPromotionCode->starterprijs); ?>","priceNext": "<?php echo e($currentPromotionCode->vervolgprijs); ?>"});});
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
->
handleViewException
(line 60)
// flush out any stray output that might get out before an error occurs or// an exception is thrown. This prevents any partial views from leaking.try {$this->files->getRequire($path, $data);} catch (Throwable $e) {$this->handleViewException($e, $obLevel);}return ltrim(ob_get_clean());}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
->
evaluatePath
(line 72)
// 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.try {$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);} catch (ViewException $e) {if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {throw $e;}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
get
(line 207)
** @return string*/protected function getContents(){return $this->engine->get($this->path, $this->gatherData());}/*** Get the data bound to the view instance.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
getContents
(line 190)
// 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();
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
renderContents
(line 159)
* @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
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php
->
render
(line 69)
// If this content implements the "Renderable" interface then we will call the// render method on the object so we will avoid any "__toString" exceptions// that might be thrown and have their errors obscured by PHP's handling.elseif ($content instanceof Renderable) {$content = $content->render();}parent::setContent($content);return $this;
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php
->
setContent
(line 35)
*/public function __construct($content = '', $status = 200, array $headers = []){$this->headers = new ResponseHeaderBag($headers);$this->setContent($content);$this->setStatusCode($status);$this->setProtocolVersion('1.0');}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
__construct
(line 918)
$response instanceof JsonSerializable ||$response instanceof stdClass ||is_array($response))) {$response = new JsonResponse($response);} elseif (! $response instanceof SymfonyResponse) {$response = new Response($response, 200, ['Content-Type' => 'text/html']);}if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {$response->setNotModified();}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
::
toResponse
(line 885)
*/public function prepareResponse($request, $response){$this->events->dispatch(new PreparingResponse($request, $response));return tap(static::toResponse($request, $response), function ($response) use ($request) {$this->events->dispatch(new ResponsePrepared($request, $response));});}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
prepareResponse
(line 805)
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);return (new Pipeline($this->container))->send($request)->through($middleware)->then(fn ($request) => $this->prepareResponse($request, $route->run()));}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Routing\{closure}
(line 144)
*/protected function prepareDestination(Closure $destination){return function ($passable) use ($destination) {try {return $destination($passable);} catch (Throwable $e) {return $this->handleException($passable, $e);}};}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
->
Illuminate\Pipeline\{closure}
(line 50)
}throw $exception;}return $next($request);}}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
Illuminate\Pipeline\{closure}
(line 159)
}$this->limiter->hit($limit->key, $limit->decayMinutes * 60);}$response = $next($request);foreach ($limits as $limit) {$response = $this->addHeaders($response,$limit->maxAttempts,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
handleRequest
(line 125)
return $limiterResponse;} elseif ($limiterResponse instanceof Unlimited) {return $next($request);}return $this->handleRequest($request,$next,collect(Arr::wrap($limiterResponse))->map(function ($limit) use ($limiterName) {return (object) ['key' => self::$shouldHashKeys ? md5($limiterName.$limit->key) : $limiterName.':'.$limit->key,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
handleRequestUsingNamedLimiter
(line 87)
public function handle($request, Closure $next, $maxAttempts = 60, $decayMinutes = 1, $prefix = ''){if (is_string($maxAttempts)&& func_num_args() === 3&& ! is_null($limiter = $this->limiter->limiter($maxAttempts))) {return $this->handleRequestUsingNamedLimiter($request, $next, $maxAttempts, $limiter);}return $this->handleRequest($request,$next,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Pipeline\{closure}
(line 119)
{$pipeline = array_reduce(array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination));return $pipeline($this->passable);}/*** Run the pipeline and return the result.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
then
(line 805)
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);return (new Pipeline($this->container))->send($request)->through($middleware)->then(fn ($request) => $this->prepareResponse($request, $route->run()));}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
runRouteWithinStack
(line 784)
$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.
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
runRoute
(line 748)
* @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.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
dispatchToRoute
(line 737)
*/public function dispatch(Request $request){$this->currentRequest = $request;return $this->dispatchToRoute($request);}/*** Dispatch the request to a route and return the response.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
dispatch
(line 200)
protected function dispatchToRouter(){return function ($request) {$this->app->instance('request', $request);return $this->router->dispatch($request);};}/*** Call the terminate method on any terminable middleware.
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Foundation\Http\{closure}
(line 144)
*/protected function prepareDestination(Closure $destination){return function ($passable) use ($destination) {try {return $destination($passable);} catch (Throwable $e) {return $this->handleException($passable, $e);}};}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
->
Illuminate\Pipeline\{closure}
(line 21)
*/public function handle($request, Closure $next){$this->clean($request);return $next($request);}/*** Clean the request's data.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php
->
handle
(line 31)
if ($callback($request)) {return $next($request);}}return parent::handle($request, $next);}/*** Transform the given value.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
->
Illuminate\Pipeline\{closure}
(line 21)
*/public function handle($request, Closure $next){$this->clean($request);return $next($request);}/*** Clean the request's data.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php
->
handle
(line 40)
if ($callback($request)) {return $next($request);}}return parent::handle($request, $next);}/*** Transform the given value.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php
->
Illuminate\Pipeline\{closure}
(line 27)
if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {throw new PostTooLargeException;}return $next($request);}/*** Determine the server 'post_max_size' as bytes.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php
->
Illuminate\Pipeline\{closure}
(line 99)
null,$this->getHeaders($data));}return $next($request);}/*** Determine if the incoming request has a maintenance mode bypass cookie.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php
->
Illuminate\Pipeline\{closure}
(line 62)
$this->cors->varyHeader($response, 'Access-Control-Request-Method');return $response;}$response = $next($request);if ($request->getMethod() === 'OPTIONS') {$this->cors->varyHeader($response, 'Access-Control-Request-Method');}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php
->
Illuminate\Pipeline\{closure}
(line 39)
{$request::setTrustedProxies([], $this->getTrustedHeaderNames());$this->setTrustedProxyIpAddresses($request);return $next($request);}/*** Sets the trusted proxies on the request.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Pipeline\{closure}
(line 119)
{$pipeline = array_reduce(array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination));return $pipeline($this->passable);}/*** Run the pipeline and return the result.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
then
(line 175)
$this->bootstrap();return (new Pipeline($this->app))->send($request)->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)->then($this->dispatchToRouter());}/*** Bootstrap the application for HTTP requests.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
sendRequestThroughRouter
(line 144)
$this->requestStartedAt = Carbon::now();try {$request->enableHttpMethodParameterOverride();$response = $this->sendRequestThroughRouter($request);} catch (Throwable $e) {$this->reportException($e);$response = $this->renderException($request, $e);}
$app = require_once __DIR__.'/../bootstrap/app.php';$kernel = $app->make(Kernel::class);$response = $kernel->handle($request = Request::capture())->send();$kernel->terminate($request, $response);
Illuminate\View\ ViewException
<script>document.addEventListener('DOMContentLoaded', function () {console.log('update price');updatePricesOnPromocode({"code": "<?php echo e($currentPromotionCode->promotiecode); ?>","priceStart": "<?php echo e($currentPromotionCode->starterprijs); ?>","priceNext": "<?php echo e($currentPromotionCode->vervolgprijs); ?>"});});
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
->
handleViewException
(line 60)
// flush out any stray output that might get out before an error occurs or// an exception is thrown. This prevents any partial views from leaking.try {$this->files->getRequire($path, $data);} catch (Throwable $e) {$this->handleViewException($e, $obLevel);}return ltrim(ob_get_clean());}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
->
evaluatePath
(line 72)
// 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.try {$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);} catch (ViewException $e) {if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {throw $e;}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
get
(line 207)
** @return string*/protected function getContents(){return $this->engine->get($this->path, $this->gatherData());}/*** Get the data bound to the view instance.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
getContents
(line 190)
// 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();
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
renderContents
(line 159)
* @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
View->render()
in
/var/www/nieuwsbriefapp/storage/framework/views/88fe5c220d76357b4c9836f93c3c7d52.php
(line 1)
<?php echo $__env->make('form.components.form', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/nieuwsbriefapp/resources/views/form/form_collection_subscribe.blade.php ENDPATH**/ ?>
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require
(line 123)
$__data = $data;return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
::
Illuminate\Filesystem\{closure}
(line 124)
return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
->
getRequire
(line 58)
// We'll evaluate the contents of the view inside a try/catch block so we can// flush out any stray output that might get out before an error occurs or// an exception is thrown. This prevents any partial views from leaking.try {$this->files->getRequire($path, $data);} catch (Throwable $e) {$this->handleViewException($e, $obLevel);}return ltrim(ob_get_clean());
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
->
evaluatePath
(line 72)
// 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.try {$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);} catch (ViewException $e) {if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {throw $e;}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
get
(line 207)
** @return string*/protected function getContents(){return $this->engine->get($this->path, $this->gatherData());}/*** Get the data bound to the view instance.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
getContents
(line 190)
// 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();
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
renderContents
(line 159)
* @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
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php
->
render
(line 69)
// If this content implements the "Renderable" interface then we will call the// render method on the object so we will avoid any "__toString" exceptions// that might be thrown and have their errors obscured by PHP's handling.elseif ($content instanceof Renderable) {$content = $content->render();}parent::setContent($content);return $this;
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php
->
setContent
(line 35)
*/public function __construct($content = '', $status = 200, array $headers = []){$this->headers = new ResponseHeaderBag($headers);$this->setContent($content);$this->setStatusCode($status);$this->setProtocolVersion('1.0');}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
__construct
(line 918)
$response instanceof JsonSerializable ||$response instanceof stdClass ||is_array($response))) {$response = new JsonResponse($response);} elseif (! $response instanceof SymfonyResponse) {$response = new Response($response, 200, ['Content-Type' => 'text/html']);}if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {$response->setNotModified();}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
::
toResponse
(line 885)
*/public function prepareResponse($request, $response){$this->events->dispatch(new PreparingResponse($request, $response));return tap(static::toResponse($request, $response), function ($response) use ($request) {$this->events->dispatch(new ResponsePrepared($request, $response));});}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
prepareResponse
(line 805)
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);return (new Pipeline($this->container))->send($request)->through($middleware)->then(fn ($request) => $this->prepareResponse($request, $route->run()));}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Routing\{closure}
(line 144)
*/protected function prepareDestination(Closure $destination){return function ($passable) use ($destination) {try {return $destination($passable);} catch (Throwable $e) {return $this->handleException($passable, $e);}};}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
->
Illuminate\Pipeline\{closure}
(line 50)
}throw $exception;}return $next($request);}}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
Illuminate\Pipeline\{closure}
(line 159)
}$this->limiter->hit($limit->key, $limit->decayMinutes * 60);}$response = $next($request);foreach ($limits as $limit) {$response = $this->addHeaders($response,$limit->maxAttempts,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
handleRequest
(line 125)
return $limiterResponse;} elseif ($limiterResponse instanceof Unlimited) {return $next($request);}return $this->handleRequest($request,$next,collect(Arr::wrap($limiterResponse))->map(function ($limit) use ($limiterName) {return (object) ['key' => self::$shouldHashKeys ? md5($limiterName.$limit->key) : $limiterName.':'.$limit->key,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
handleRequestUsingNamedLimiter
(line 87)
public function handle($request, Closure $next, $maxAttempts = 60, $decayMinutes = 1, $prefix = ''){if (is_string($maxAttempts)&& func_num_args() === 3&& ! is_null($limiter = $this->limiter->limiter($maxAttempts))) {return $this->handleRequestUsingNamedLimiter($request, $next, $maxAttempts, $limiter);}return $this->handleRequest($request,$next,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Pipeline\{closure}
(line 119)
{$pipeline = array_reduce(array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination));return $pipeline($this->passable);}/*** Run the pipeline and return the result.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
then
(line 805)
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);return (new Pipeline($this->container))->send($request)->through($middleware)->then(fn ($request) => $this->prepareResponse($request, $route->run()));}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
runRouteWithinStack
(line 784)
$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.
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
runRoute
(line 748)
* @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.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
dispatchToRoute
(line 737)
*/public function dispatch(Request $request){$this->currentRequest = $request;return $this->dispatchToRoute($request);}/*** Dispatch the request to a route and return the response.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
dispatch
(line 200)
protected function dispatchToRouter(){return function ($request) {$this->app->instance('request', $request);return $this->router->dispatch($request);};}/*** Call the terminate method on any terminable middleware.
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Foundation\Http\{closure}
(line 144)
*/protected function prepareDestination(Closure $destination){return function ($passable) use ($destination) {try {return $destination($passable);} catch (Throwable $e) {return $this->handleException($passable, $e);}};}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
->
Illuminate\Pipeline\{closure}
(line 21)
*/public function handle($request, Closure $next){$this->clean($request);return $next($request);}/*** Clean the request's data.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php
->
handle
(line 31)
if ($callback($request)) {return $next($request);}}return parent::handle($request, $next);}/*** Transform the given value.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
->
Illuminate\Pipeline\{closure}
(line 21)
*/public function handle($request, Closure $next){$this->clean($request);return $next($request);}/*** Clean the request's data.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php
->
handle
(line 40)
if ($callback($request)) {return $next($request);}}return parent::handle($request, $next);}/*** Transform the given value.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php
->
Illuminate\Pipeline\{closure}
(line 27)
if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {throw new PostTooLargeException;}return $next($request);}/*** Determine the server 'post_max_size' as bytes.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php
->
Illuminate\Pipeline\{closure}
(line 99)
null,$this->getHeaders($data));}return $next($request);}/*** Determine if the incoming request has a maintenance mode bypass cookie.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php
->
Illuminate\Pipeline\{closure}
(line 62)
$this->cors->varyHeader($response, 'Access-Control-Request-Method');return $response;}$response = $next($request);if ($request->getMethod() === 'OPTIONS') {$this->cors->varyHeader($response, 'Access-Control-Request-Method');}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php
->
Illuminate\Pipeline\{closure}
(line 39)
{$request::setTrustedProxies([], $this->getTrustedHeaderNames());$this->setTrustedProxyIpAddresses($request);return $next($request);}/*** Sets the trusted proxies on the request.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Pipeline\{closure}
(line 119)
{$pipeline = array_reduce(array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination));return $pipeline($this->passable);}/*** Run the pipeline and return the result.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
then
(line 175)
$this->bootstrap();return (new Pipeline($this->app))->send($request)->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)->then($this->dispatchToRouter());}/*** Bootstrap the application for HTTP requests.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
sendRequestThroughRouter
(line 144)
$this->requestStartedAt = Carbon::now();try {$request->enableHttpMethodParameterOverride();$response = $this->sendRequestThroughRouter($request);} catch (Throwable $e) {$this->reportException($e);$response = $this->renderException($request, $e);}
$app = require_once __DIR__.'/../bootstrap/app.php';$kernel = $app->make(Kernel::class);$response = $kernel->handle($request = Request::capture())->send();$kernel->terminate($request, $response);
Illuminate\View\ ViewException
<script>document.addEventListener('DOMContentLoaded', function () {console.log('update price');updatePricesOnPromocode({"code": "<?php echo e($currentPromotionCode->promotiecode); ?>","priceStart": "<?php echo e($currentPromotionCode->starterprijs); ?>","priceNext": "<?php echo e($currentPromotionCode->vervolgprijs); ?>"});});
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
->
handleViewException
(line 60)
// flush out any stray output that might get out before an error occurs or// an exception is thrown. This prevents any partial views from leaking.try {$this->files->getRequire($path, $data);} catch (Throwable $e) {$this->handleViewException($e, $obLevel);}return ltrim(ob_get_clean());}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
->
evaluatePath
(line 72)
// 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.try {$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);} catch (ViewException $e) {if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {throw $e;}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
get
(line 207)
** @return string*/protected function getContents(){return $this->engine->get($this->path, $this->gatherData());}/*** Get the data bound to the view instance.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
getContents
(line 190)
// 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();
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
renderContents
(line 159)
* @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
View->render()
in
/var/www/nieuwsbriefapp/storage/framework/views/592f873416566d32a6717e033c89dfd5.php
(line 191)
countrycode = '<?php echo e($countrycode); ?>';languagecode = '<?php echo e($languagecode); ?>';</script><?php echo $__env->make('form.scripts.form_validation_js', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php echo $__env->make('form.scripts.update_prices_on_website_js', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php echo $__env->make('form.scripts.postcodecheck_js', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/nieuwsbriefapp/resources/views/form/components/form.blade.php ENDPATH**/ ?>
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require
(line 123)
$__data = $data;return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
::
Illuminate\Filesystem\{closure}
(line 124)
return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
->
getRequire
(line 58)
// We'll evaluate the contents of the view inside a try/catch block so we can// flush out any stray output that might get out before an error occurs or// an exception is thrown. This prevents any partial views from leaking.try {$this->files->getRequire($path, $data);} catch (Throwable $e) {$this->handleViewException($e, $obLevel);}return ltrim(ob_get_clean());
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
->
evaluatePath
(line 72)
// 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.try {$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);} catch (ViewException $e) {if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {throw $e;}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
get
(line 207)
** @return string*/protected function getContents(){return $this->engine->get($this->path, $this->gatherData());}/*** Get the data bound to the view instance.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
getContents
(line 190)
// 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();
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
renderContents
(line 159)
* @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
View->render()
in
/var/www/nieuwsbriefapp/storage/framework/views/88fe5c220d76357b4c9836f93c3c7d52.php
(line 1)
<?php echo $__env->make('form.components.form', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/nieuwsbriefapp/resources/views/form/form_collection_subscribe.blade.php ENDPATH**/ ?>
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require
(line 123)
$__data = $data;return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
::
Illuminate\Filesystem\{closure}
(line 124)
return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
->
getRequire
(line 58)
// We'll evaluate the contents of the view inside a try/catch block so we can// flush out any stray output that might get out before an error occurs or// an exception is thrown. This prevents any partial views from leaking.try {$this->files->getRequire($path, $data);} catch (Throwable $e) {$this->handleViewException($e, $obLevel);}return ltrim(ob_get_clean());
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
->
evaluatePath
(line 72)
// 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.try {$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);} catch (ViewException $e) {if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {throw $e;}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
get
(line 207)
** @return string*/protected function getContents(){return $this->engine->get($this->path, $this->gatherData());}/*** Get the data bound to the view instance.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
getContents
(line 190)
// 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();
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
renderContents
(line 159)
* @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
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php
->
render
(line 69)
// If this content implements the "Renderable" interface then we will call the// render method on the object so we will avoid any "__toString" exceptions// that might be thrown and have their errors obscured by PHP's handling.elseif ($content instanceof Renderable) {$content = $content->render();}parent::setContent($content);return $this;
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php
->
setContent
(line 35)
*/public function __construct($content = '', $status = 200, array $headers = []){$this->headers = new ResponseHeaderBag($headers);$this->setContent($content);$this->setStatusCode($status);$this->setProtocolVersion('1.0');}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
__construct
(line 918)
$response instanceof JsonSerializable ||$response instanceof stdClass ||is_array($response))) {$response = new JsonResponse($response);} elseif (! $response instanceof SymfonyResponse) {$response = new Response($response, 200, ['Content-Type' => 'text/html']);}if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {$response->setNotModified();}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
::
toResponse
(line 885)
*/public function prepareResponse($request, $response){$this->events->dispatch(new PreparingResponse($request, $response));return tap(static::toResponse($request, $response), function ($response) use ($request) {$this->events->dispatch(new ResponsePrepared($request, $response));});}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
prepareResponse
(line 805)
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);return (new Pipeline($this->container))->send($request)->through($middleware)->then(fn ($request) => $this->prepareResponse($request, $route->run()));}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Routing\{closure}
(line 144)
*/protected function prepareDestination(Closure $destination){return function ($passable) use ($destination) {try {return $destination($passable);} catch (Throwable $e) {return $this->handleException($passable, $e);}};}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
->
Illuminate\Pipeline\{closure}
(line 50)
}throw $exception;}return $next($request);}}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
Illuminate\Pipeline\{closure}
(line 159)
}$this->limiter->hit($limit->key, $limit->decayMinutes * 60);}$response = $next($request);foreach ($limits as $limit) {$response = $this->addHeaders($response,$limit->maxAttempts,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
handleRequest
(line 125)
return $limiterResponse;} elseif ($limiterResponse instanceof Unlimited) {return $next($request);}return $this->handleRequest($request,$next,collect(Arr::wrap($limiterResponse))->map(function ($limit) use ($limiterName) {return (object) ['key' => self::$shouldHashKeys ? md5($limiterName.$limit->key) : $limiterName.':'.$limit->key,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
handleRequestUsingNamedLimiter
(line 87)
public function handle($request, Closure $next, $maxAttempts = 60, $decayMinutes = 1, $prefix = ''){if (is_string($maxAttempts)&& func_num_args() === 3&& ! is_null($limiter = $this->limiter->limiter($maxAttempts))) {return $this->handleRequestUsingNamedLimiter($request, $next, $maxAttempts, $limiter);}return $this->handleRequest($request,$next,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Pipeline\{closure}
(line 119)
{$pipeline = array_reduce(array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination));return $pipeline($this->passable);}/*** Run the pipeline and return the result.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
then
(line 805)
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);return (new Pipeline($this->container))->send($request)->through($middleware)->then(fn ($request) => $this->prepareResponse($request, $route->run()));}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
runRouteWithinStack
(line 784)
$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.
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
runRoute
(line 748)
* @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.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
dispatchToRoute
(line 737)
*/public function dispatch(Request $request){$this->currentRequest = $request;return $this->dispatchToRoute($request);}/*** Dispatch the request to a route and return the response.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
dispatch
(line 200)
protected function dispatchToRouter(){return function ($request) {$this->app->instance('request', $request);return $this->router->dispatch($request);};}/*** Call the terminate method on any terminable middleware.
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Foundation\Http\{closure}
(line 144)
*/protected function prepareDestination(Closure $destination){return function ($passable) use ($destination) {try {return $destination($passable);} catch (Throwable $e) {return $this->handleException($passable, $e);}};}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
->
Illuminate\Pipeline\{closure}
(line 21)
*/public function handle($request, Closure $next){$this->clean($request);return $next($request);}/*** Clean the request's data.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php
->
handle
(line 31)
if ($callback($request)) {return $next($request);}}return parent::handle($request, $next);}/*** Transform the given value.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
->
Illuminate\Pipeline\{closure}
(line 21)
*/public function handle($request, Closure $next){$this->clean($request);return $next($request);}/*** Clean the request's data.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php
->
handle
(line 40)
if ($callback($request)) {return $next($request);}}return parent::handle($request, $next);}/*** Transform the given value.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php
->
Illuminate\Pipeline\{closure}
(line 27)
if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {throw new PostTooLargeException;}return $next($request);}/*** Determine the server 'post_max_size' as bytes.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php
->
Illuminate\Pipeline\{closure}
(line 99)
null,$this->getHeaders($data));}return $next($request);}/*** Determine if the incoming request has a maintenance mode bypass cookie.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php
->
Illuminate\Pipeline\{closure}
(line 62)
$this->cors->varyHeader($response, 'Access-Control-Request-Method');return $response;}$response = $next($request);if ($request->getMethod() === 'OPTIONS') {$this->cors->varyHeader($response, 'Access-Control-Request-Method');}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php
->
Illuminate\Pipeline\{closure}
(line 39)
{$request::setTrustedProxies([], $this->getTrustedHeaderNames());$this->setTrustedProxyIpAddresses($request);return $next($request);}/*** Sets the trusted proxies on the request.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Pipeline\{closure}
(line 119)
{$pipeline = array_reduce(array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination));return $pipeline($this->passable);}/*** Run the pipeline and return the result.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
then
(line 175)
$this->bootstrap();return (new Pipeline($this->app))->send($request)->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)->then($this->dispatchToRouter());}/*** Bootstrap the application for HTTP requests.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
sendRequestThroughRouter
(line 144)
$this->requestStartedAt = Carbon::now();try {$request->enableHttpMethodParameterOverride();$response = $this->sendRequestThroughRouter($request);} catch (Throwable $e) {$this->reportException($e);$response = $this->renderException($request, $e);}
$app = require_once __DIR__.'/../bootstrap/app.php';$kernel = $app->make(Kernel::class);$response = $kernel->handle($request = Request::capture())->send();$kernel->terminate($request, $response);
ErrorException
<script>document.addEventListener('DOMContentLoaded', function () {console.log('update price');updatePricesOnPromocode({"code": "<?php echo e($currentPromotionCode->promotiecode); ?>","priceStart": "<?php echo e($currentPromotionCode->starterprijs); ?>","priceNext": "<?php echo e($currentPromotionCode->vervolgprijs); ?>"});});
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php
->
handleError
(line 255)
* @return callable*/protected function forwardsTo($method){return fn (...$arguments) => static::$app? $this->{$method}(...$arguments): false;}/*** Determine if the error level is a deprecation.
HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}()
in
/var/www/nieuwsbriefapp/storage/framework/views/8c178e907ec91838e05bd49d48d1c816.php
(line 6)
<script>document.addEventListener('DOMContentLoaded', function () {console.log('update price');updatePricesOnPromocode({"code": "<?php echo e($currentPromotionCode->promotiecode); ?>","priceStart": "<?php echo e($currentPromotionCode->starterprijs); ?>","priceNext": "<?php echo e($currentPromotionCode->vervolgprijs); ?>"});});
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require
(line 123)
$__data = $data;return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
::
Illuminate\Filesystem\{closure}
(line 124)
return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
->
getRequire
(line 58)
// We'll evaluate the contents of the view inside a try/catch block so we can// flush out any stray output that might get out before an error occurs or// an exception is thrown. This prevents any partial views from leaking.try {$this->files->getRequire($path, $data);} catch (Throwable $e) {$this->handleViewException($e, $obLevel);}return ltrim(ob_get_clean());
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
->
evaluatePath
(line 72)
// 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.try {$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);} catch (ViewException $e) {if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {throw $e;}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
get
(line 207)
** @return string*/protected function getContents(){return $this->engine->get($this->path, $this->gatherData());}/*** Get the data bound to the view instance.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
getContents
(line 190)
// 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();
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
renderContents
(line 159)
* @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
View->render()
in
/var/www/nieuwsbriefapp/storage/framework/views/592f873416566d32a6717e033c89dfd5.php
(line 191)
countrycode = '<?php echo e($countrycode); ?>';languagecode = '<?php echo e($languagecode); ?>';</script><?php echo $__env->make('form.scripts.form_validation_js', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php echo $__env->make('form.scripts.update_prices_on_website_js', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php echo $__env->make('form.scripts.postcodecheck_js', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/nieuwsbriefapp/resources/views/form/components/form.blade.php ENDPATH**/ ?>
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require
(line 123)
$__data = $data;return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
::
Illuminate\Filesystem\{closure}
(line 124)
return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
->
getRequire
(line 58)
// We'll evaluate the contents of the view inside a try/catch block so we can// flush out any stray output that might get out before an error occurs or// an exception is thrown. This prevents any partial views from leaking.try {$this->files->getRequire($path, $data);} catch (Throwable $e) {$this->handleViewException($e, $obLevel);}return ltrim(ob_get_clean());
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
->
evaluatePath
(line 72)
// 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.try {$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);} catch (ViewException $e) {if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {throw $e;}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
get
(line 207)
** @return string*/protected function getContents(){return $this->engine->get($this->path, $this->gatherData());}/*** Get the data bound to the view instance.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
getContents
(line 190)
// 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();
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
renderContents
(line 159)
* @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
View->render()
in
/var/www/nieuwsbriefapp/storage/framework/views/88fe5c220d76357b4c9836f93c3c7d52.php
(line 1)
<?php echo $__env->make('form.components.form', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/nieuwsbriefapp/resources/views/form/form_collection_subscribe.blade.php ENDPATH**/ ?>
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
require
(line 123)
$__data = $data;return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php
::
Illuminate\Filesystem\{closure}
(line 124)
return (static function () use ($__path, $__data) {extract($__data, EXTR_SKIP);return require $__path;})();}throw new FileNotFoundException("File does not exist at path {$path}.");}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
->
getRequire
(line 58)
// We'll evaluate the contents of the view inside a try/catch block so we can// flush out any stray output that might get out before an error occurs or// an exception is thrown. This prevents any partial views from leaking.try {$this->files->getRequire($path, $data);} catch (Throwable $e) {$this->handleViewException($e, $obLevel);}return ltrim(ob_get_clean());
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php
->
evaluatePath
(line 72)
// 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.try {$results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data);} catch (ViewException $e) {if (! str($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) {throw $e;}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
get
(line 207)
** @return string*/protected function getContents(){return $this->engine->get($this->path, $this->gatherData());}/*** Get the data bound to the view instance.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
getContents
(line 190)
// 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();
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php
->
renderContents
(line 159)
* @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
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php
->
render
(line 69)
// If this content implements the "Renderable" interface then we will call the// render method on the object so we will avoid any "__toString" exceptions// that might be thrown and have their errors obscured by PHP's handling.elseif ($content instanceof Renderable) {$content = $content->render();}parent::setContent($content);return $this;
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php
->
setContent
(line 35)
*/public function __construct($content = '', $status = 200, array $headers = []){$this->headers = new ResponseHeaderBag($headers);$this->setContent($content);$this->setStatusCode($status);$this->setProtocolVersion('1.0');}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
__construct
(line 918)
$response instanceof JsonSerializable ||$response instanceof stdClass ||is_array($response))) {$response = new JsonResponse($response);} elseif (! $response instanceof SymfonyResponse) {$response = new Response($response, 200, ['Content-Type' => 'text/html']);}if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) {$response->setNotModified();}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
::
toResponse
(line 885)
*/public function prepareResponse($request, $response){$this->events->dispatch(new PreparingResponse($request, $response));return tap(static::toResponse($request, $response), function ($response) use ($request) {$this->events->dispatch(new ResponsePrepared($request, $response));});}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
prepareResponse
(line 805)
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);return (new Pipeline($this->container))->send($request)->through($middleware)->then(fn ($request) => $this->prepareResponse($request, $route->run()));}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Routing\{closure}
(line 144)
*/protected function prepareDestination(Closure $destination){return function ($passable) use ($destination) {try {return $destination($passable);} catch (Throwable $e) {return $this->handleException($passable, $e);}};}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
->
Illuminate\Pipeline\{closure}
(line 50)
}throw $exception;}return $next($request);}}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
Illuminate\Pipeline\{closure}
(line 159)
}$this->limiter->hit($limit->key, $limit->decayMinutes * 60);}$response = $next($request);foreach ($limits as $limit) {$response = $this->addHeaders($response,$limit->maxAttempts,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
handleRequest
(line 125)
return $limiterResponse;} elseif ($limiterResponse instanceof Unlimited) {return $next($request);}return $this->handleRequest($request,$next,collect(Arr::wrap($limiterResponse))->map(function ($limit) use ($limiterName) {return (object) ['key' => self::$shouldHashKeys ? md5($limiterName.$limit->key) : $limiterName.':'.$limit->key,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
->
handleRequestUsingNamedLimiter
(line 87)
public function handle($request, Closure $next, $maxAttempts = 60, $decayMinutes = 1, $prefix = ''){if (is_string($maxAttempts)&& func_num_args() === 3&& ! is_null($limiter = $this->limiter->limiter($maxAttempts))) {return $this->handleRequestUsingNamedLimiter($request, $next, $maxAttempts, $limiter);}return $this->handleRequest($request,$next,
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Pipeline\{closure}
(line 119)
{$pipeline = array_reduce(array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination));return $pipeline($this->passable);}/*** Run the pipeline and return the result.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
then
(line 805)
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);return (new Pipeline($this->container))->send($request)->through($middleware)->then(fn ($request) => $this->prepareResponse($request, $route->run()));}/**
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
runRouteWithinStack
(line 784)
$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.
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
runRoute
(line 748)
* @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.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
dispatchToRoute
(line 737)
*/public function dispatch(Request $request){$this->currentRequest = $request;return $this->dispatchToRoute($request);}/*** Dispatch the request to a route and return the response.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
dispatch
(line 200)
protected function dispatchToRouter(){return function ($request) {$this->app->instance('request', $request);return $this->router->dispatch($request);};}/*** Call the terminate method on any terminable middleware.
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Foundation\Http\{closure}
(line 144)
*/protected function prepareDestination(Closure $destination){return function ($passable) use ($destination) {try {return $destination($passable);} catch (Throwable $e) {return $this->handleException($passable, $e);}};}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
->
Illuminate\Pipeline\{closure}
(line 21)
*/public function handle($request, Closure $next){$this->clean($request);return $next($request);}/*** Clean the request's data.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php
->
handle
(line 31)
if ($callback($request)) {return $next($request);}}return parent::handle($request, $next);}/*** Transform the given value.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
->
Illuminate\Pipeline\{closure}
(line 21)
*/public function handle($request, Closure $next){$this->clean($request);return $next($request);}/*** Clean the request's data.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php
->
handle
(line 40)
if ($callback($request)) {return $next($request);}}return parent::handle($request, $next);}/*** Transform the given value.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php
->
Illuminate\Pipeline\{closure}
(line 27)
if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {throw new PostTooLargeException;}return $next($request);}/*** Determine the server 'post_max_size' as bytes.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php
->
Illuminate\Pipeline\{closure}
(line 99)
null,$this->getHeaders($data));}return $next($request);}/*** Determine if the incoming request has a maintenance mode bypass cookie.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php
->
Illuminate\Pipeline\{closure}
(line 62)
$this->cors->varyHeader($response, 'Access-Control-Request-Method');return $response;}$response = $next($request);if ($request->getMethod() === 'OPTIONS') {$this->cors->varyHeader($response, 'Access-Control-Request-Method');}
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php
->
Illuminate\Pipeline\{closure}
(line 39)
{$request::setTrustedProxies([], $this->getTrustedHeaderNames());$this->setTrustedProxyIpAddresses($request);return $next($request);}/*** Sets the trusted proxies on the request.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// 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);
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Pipeline\{closure}
(line 119)
{$pipeline = array_reduce(array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination));return $pipeline($this->passable);}/*** Run the pipeline and return the result.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
then
(line 175)
$this->bootstrap();return (new Pipeline($this->app))->send($request)->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)->then($this->dispatchToRouter());}/*** Bootstrap the application for HTTP requests.*
in
/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
sendRequestThroughRouter
(line 144)
$this->requestStartedAt = Carbon::now();try {$request->enableHttpMethodParameterOverride();$response = $this->sendRequestThroughRouter($request);} catch (Throwable $e) {$this->reportException($e);$response = $this->renderException($request, $e);}
$app = require_once __DIR__.'/../bootstrap/app.php';$kernel = $app->make(Kernel::class);$response = $kernel->handle($request = Request::capture())->send();$kernel->terminate($request, $response);
Stack Traces 4
|
[4/4]
ViewException
|
|---|
Illuminate\View\ViewException:
Attempt to read property "promotiecode" on null (View: /var/www/nieuwsbriefapp/resources/views/form/scripts/update_prices_on_website_js.blade.php) (View: /var/www/nieuwsbriefapp/resources/views/form/scripts/update_prices_on_website_js.blade.php) (View: /var/www/nieuwsbriefapp/resources/views/form/scripts/update_prices_on_website_js.blade.php)
at /var/www/nieuwsbriefapp/storage/framework/views/8c178e907ec91838e05bd49d48d1c816.php:6
at Illuminate\View\Engines\CompilerEngine->handleViewException()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:72)
at Illuminate\View\Engines\CompilerEngine->get()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:207)
at Illuminate\View\View->getContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:190)
at Illuminate\View\View->renderContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:159)
at Illuminate\View\View->render()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
at Illuminate\Http\Response->setContent()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
at Illuminate\Http\Response->__construct()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:918)
at Illuminate\Routing\Router::toResponse()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:885)
at Illuminate\Routing\Router->prepareResponse()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
at Illuminate\Routing\Middleware\SubstituteBindings->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:159)
at Illuminate\Routing\Middleware\ThrottleRequests->handleRequest()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:125)
at Illuminate\Routing\Middleware\ThrottleRequests->handleRequestUsingNamedLimiter()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:87)
at Illuminate\Routing\Middleware\ThrottleRequests->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
at Illuminate\Pipeline\Pipeline->then()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805)
at Illuminate\Routing\Router->runRouteWithinStack()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:784)
at Illuminate\Routing\Router->runRoute()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748)
at Illuminate\Routing\Router->dispatchToRoute()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:737)
at Illuminate\Routing\Router->dispatch()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:99)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:62)
at Illuminate\Http\Middleware\HandleCors->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
at Illuminate\Http\Middleware\TrustProxies->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
at Illuminate\Pipeline\Pipeline->then()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
at Illuminate\Foundation\Http\Kernel->handle()
(/var/www/nieuwsbriefapp/public/index.php:51)
|
|
[3/4]
ViewException
|
|---|
Illuminate\View\ViewException:
Attempt to read property "promotiecode" on null (View: /var/www/nieuwsbriefapp/resources/views/form/scripts/update_prices_on_website_js.blade.php) (View: /var/www/nieuwsbriefapp/resources/views/form/scripts/update_prices_on_website_js.blade.php)
at /var/www/nieuwsbriefapp/storage/framework/views/8c178e907ec91838e05bd49d48d1c816.php:6
at Illuminate\View\Engines\CompilerEngine->handleViewException()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:72)
at Illuminate\View\Engines\CompilerEngine->get()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:207)
at Illuminate\View\View->getContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:190)
at Illuminate\View\View->renderContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:159)
at Illuminate\View\View->render()
(/var/www/nieuwsbriefapp/storage/framework/views/88fe5c220d76357b4c9836f93c3c7d52.php:1)
at require('/var/www/nieuwsbriefapp/storage/framework/views/88fe5c220d76357b4c9836f93c3c7d52.php')
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:72)
at Illuminate\View\Engines\CompilerEngine->get()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:207)
at Illuminate\View\View->getContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:190)
at Illuminate\View\View->renderContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:159)
at Illuminate\View\View->render()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
at Illuminate\Http\Response->setContent()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
at Illuminate\Http\Response->__construct()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:918)
at Illuminate\Routing\Router::toResponse()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:885)
at Illuminate\Routing\Router->prepareResponse()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
at Illuminate\Routing\Middleware\SubstituteBindings->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:159)
at Illuminate\Routing\Middleware\ThrottleRequests->handleRequest()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:125)
at Illuminate\Routing\Middleware\ThrottleRequests->handleRequestUsingNamedLimiter()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:87)
at Illuminate\Routing\Middleware\ThrottleRequests->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
at Illuminate\Pipeline\Pipeline->then()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805)
at Illuminate\Routing\Router->runRouteWithinStack()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:784)
at Illuminate\Routing\Router->runRoute()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748)
at Illuminate\Routing\Router->dispatchToRoute()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:737)
at Illuminate\Routing\Router->dispatch()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:99)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:62)
at Illuminate\Http\Middleware\HandleCors->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
at Illuminate\Http\Middleware\TrustProxies->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
at Illuminate\Pipeline\Pipeline->then()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
at Illuminate\Foundation\Http\Kernel->handle()
(/var/www/nieuwsbriefapp/public/index.php:51)
|
|
[2/4]
ViewException
|
|---|
Illuminate\View\ViewException:
Attempt to read property "promotiecode" on null (View: /var/www/nieuwsbriefapp/resources/views/form/scripts/update_prices_on_website_js.blade.php)
at /var/www/nieuwsbriefapp/storage/framework/views/8c178e907ec91838e05bd49d48d1c816.php:6
at Illuminate\View\Engines\CompilerEngine->handleViewException()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:72)
at Illuminate\View\Engines\CompilerEngine->get()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:207)
at Illuminate\View\View->getContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:190)
at Illuminate\View\View->renderContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:159)
at Illuminate\View\View->render()
(/var/www/nieuwsbriefapp/storage/framework/views/592f873416566d32a6717e033c89dfd5.php:191)
at require('/var/www/nieuwsbriefapp/storage/framework/views/592f873416566d32a6717e033c89dfd5.php')
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:72)
at Illuminate\View\Engines\CompilerEngine->get()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:207)
at Illuminate\View\View->getContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:190)
at Illuminate\View\View->renderContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:159)
at Illuminate\View\View->render()
(/var/www/nieuwsbriefapp/storage/framework/views/88fe5c220d76357b4c9836f93c3c7d52.php:1)
at require('/var/www/nieuwsbriefapp/storage/framework/views/88fe5c220d76357b4c9836f93c3c7d52.php')
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:72)
at Illuminate\View\Engines\CompilerEngine->get()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:207)
at Illuminate\View\View->getContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:190)
at Illuminate\View\View->renderContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:159)
at Illuminate\View\View->render()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
at Illuminate\Http\Response->setContent()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
at Illuminate\Http\Response->__construct()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:918)
at Illuminate\Routing\Router::toResponse()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:885)
at Illuminate\Routing\Router->prepareResponse()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
at Illuminate\Routing\Middleware\SubstituteBindings->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:159)
at Illuminate\Routing\Middleware\ThrottleRequests->handleRequest()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:125)
at Illuminate\Routing\Middleware\ThrottleRequests->handleRequestUsingNamedLimiter()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:87)
at Illuminate\Routing\Middleware\ThrottleRequests->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
at Illuminate\Pipeline\Pipeline->then()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805)
at Illuminate\Routing\Router->runRouteWithinStack()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:784)
at Illuminate\Routing\Router->runRoute()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748)
at Illuminate\Routing\Router->dispatchToRoute()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:737)
at Illuminate\Routing\Router->dispatch()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:99)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:62)
at Illuminate\Http\Middleware\HandleCors->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
at Illuminate\Http\Middleware\TrustProxies->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
at Illuminate\Pipeline\Pipeline->then()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
at Illuminate\Foundation\Http\Kernel->handle()
(/var/www/nieuwsbriefapp/public/index.php:51)
|
|
[1/4]
ErrorException
|
|---|
ErrorException:
Attempt to read property "promotiecode" on null
at /var/www/nieuwsbriefapp/storage/framework/views/8c178e907ec91838e05bd49d48d1c816.php:6
at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:255)
at Illuminate\Foundation\Bootstrap\HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}()
(/var/www/nieuwsbriefapp/storage/framework/views/8c178e907ec91838e05bd49d48d1c816.php:6)
at require('/var/www/nieuwsbriefapp/storage/framework/views/8c178e907ec91838e05bd49d48d1c816.php')
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:72)
at Illuminate\View\Engines\CompilerEngine->get()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:207)
at Illuminate\View\View->getContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:190)
at Illuminate\View\View->renderContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:159)
at Illuminate\View\View->render()
(/var/www/nieuwsbriefapp/storage/framework/views/592f873416566d32a6717e033c89dfd5.php:191)
at require('/var/www/nieuwsbriefapp/storage/framework/views/592f873416566d32a6717e033c89dfd5.php')
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:72)
at Illuminate\View\Engines\CompilerEngine->get()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:207)
at Illuminate\View\View->getContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:190)
at Illuminate\View\View->renderContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:159)
at Illuminate\View\View->render()
(/var/www/nieuwsbriefapp/storage/framework/views/88fe5c220d76357b4c9836f93c3c7d52.php:1)
at require('/var/www/nieuwsbriefapp/storage/framework/views/88fe5c220d76357b4c9836f93c3c7d52.php')
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123)
at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124)
at Illuminate\Filesystem\Filesystem->getRequire()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58)
at Illuminate\View\Engines\PhpEngine->evaluatePath()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:72)
at Illuminate\View\Engines\CompilerEngine->get()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:207)
at Illuminate\View\View->getContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:190)
at Illuminate\View\View->renderContents()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/View/View.php:159)
at Illuminate\View\View->render()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php:69)
at Illuminate\Http\Response->setContent()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Response.php:35)
at Illuminate\Http\Response->__construct()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:918)
at Illuminate\Routing\Router::toResponse()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:885)
at Illuminate\Routing\Router->prepareResponse()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
at Illuminate\Routing\Middleware\SubstituteBindings->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:159)
at Illuminate\Routing\Middleware\ThrottleRequests->handleRequest()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:125)
at Illuminate\Routing\Middleware\ThrottleRequests->handleRequestUsingNamedLimiter()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php:87)
at Illuminate\Routing\Middleware\ThrottleRequests->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
at Illuminate\Pipeline\Pipeline->then()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805)
at Illuminate\Routing\Router->runRouteWithinStack()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:784)
at Illuminate\Routing\Router->runRoute()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748)
at Illuminate\Routing\Router->dispatchToRoute()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Routing/Router.php:737)
at Illuminate\Routing\Router->dispatch()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:99)
at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:62)
at Illuminate\Http\Middleware\HandleCors->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
at Illuminate\Http\Middleware\TrustProxies->handle()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
at Illuminate\Pipeline\Pipeline->then()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
(/var/www/nieuwsbriefapp/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
at Illuminate\Foundation\Http\Kernel->handle()
(/var/www/nieuwsbriefapp/public/index.php:51)
|
Specificaties
| Thema: | Vier Elementen - Water |
| Collectie: | Officiële Nationale Proof Sets |
| Metaal: | Koper/Nikkel |
| Kwaliteit: | Allerhoogste kwaliteit (Proof) |
| Gewicht: | 42,92 gram |
| Oplage: | 3.000 stuks wereldwijd |
| Prijs: | Nu slechts € |
| Inclusief: | Zwaar verzilverde Herdenkingsuitgifte |
| Levering: | Vanaf eind mei 2023 |
Belangrijke informatie
U loopt geen enkel risico en u verplicht zich tot niets.
U kunt zich op ieder moment van de exclusieve reserveringslijst laten verwijderen.
Een brief, e-mail of telefoontje naar de klantenservice van het Amsterdams MuntKantoor volstaat.
De vermelde prijzen zijn exclusief € 3,95 verzend- en verzekeringskosten per zending. Deze kosten vervallen bij een automatische incasso.
Indien het product dat u bestelt op voorraad is, bedraagt de levertijd gemiddeld 3 tot 5 werkdagen.