Illuminate\View\ViewException {#1869 #severity: E_ERROR }
<?php echo e($category->category->title); ?>،
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?></span></div>
<p class="font-light leading-relaxed text-center text-gray-100 text-lg md:text-2xl lg:text-3xl w-10/12 lg:w-5/12 mx-auto"><?php echo e($post->description); ?></p>
<div class="flex gap-3 items-center justify-center">
<div class="w-10 h-10 rounded-full">
<img src="<?php echo e(asset($post->author->avatar)); ?>">
</div>
<p class="text-xs text-gray-100"><?php echo e($post->author->name); ?></p>
<p class="text-gray-100"><?php echo e(jdate( $post->created_at )->format('Y/m/d')); ?></p>
</div>
</div>
\Illuminate\View\Engines\PhpEngine::handleViewException($e, $obLevel);
return;
}
parent::handleViewException($e, $obLevel);
}
public function shouldBypassExceptionForLivewire(\Throwable $e, $obLevel)
{
$uses = array_flip(class_uses_recursive($e));
// 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());
}
}
protected function evaluatePath($__path, $__data)
{
if (! ExtendBlade::isRenderingLivewireComponent()) {
return parent::evaluatePath($__path, $__data);
}
$obLevel = ob_get_level();
ob_start();
// 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;
}
use function Livewire\trigger;
class ExtendedCompilerEngine extends \Illuminate\View\Engines\CompilerEngine {
public function get($path, array $data = [])
{
if (! ExtendBlade::isRenderingLivewireComponent()) return parent::get($path, $data);
$currentComponent = ExtendBlade::currentRendering();
trigger('view:compile', $currentComponent, $path);
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each section gets flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(?callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
// 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;
*/
public function __construct($content = '', $status = 200, array $headers = [])
{
$this->headers = new ResponseHeaderBag($headers);
$this->setContent($content);
$this->setStatusCode($status);
$this->setProtocolVersion('1.0');
}
/**
$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();
}
*/
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));
});
}
/**
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(fn ($request) => $this->prepareResponse(
$request, $route->run()
));
}
/**
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
}
}
throw $exception;
}
return $next($request);
}
}
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
$this->isReading($request) ||
$this->runningUnitTests() ||
$this->inExceptArray($request) ||
$this->tokensMatch($request)
) {
return tap($next($request), function ($response) use ($request) {
if ($this->shouldAddXsrfTokenCookie()) {
$this->addCookieToResponse($request, $response);
}
});
}
// 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);
// Putting the errors in the view for every view allows the developer to just
// assume that some errors are always available, which is convenient since
// they don't have to continually run checks for the presence of errors.
return $next($request);
}
}
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
$this->startSession($request, $session)
);
$this->collectGarbage($session);
$response = $next($request);
$this->storeCurrentUrl($request, $session);
$this->addCookieToResponse($response, $session);
if ($this->manager->shouldBlock() ||
($request->route() instanceof Route && $request->route()->locksFor())) {
return $this->handleRequestWhileBlocking($request, $session, $next);
}
return $this->handleStatefulRequest($request, $session, $next);
}
/**
* Handle the given request within session state.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$response = $next($request);
foreach ($this->cookies->getQueuedCookies() as $cookie) {
$response->headers->setCookie($cookie);
}
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
* @param \Closure $next
* @return \Symfony\Component\HttpFoundation\Response
*/
public function handle($request, Closure $next)
{
return $this->encrypt($next($this->decrypt($request)));
}
/**
* Decrypt the cookies on the request.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
{
$pipeline = array_reduce(
array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(fn ($request) => $this->prepareResponse(
$request, $route->run()
));
}
/**
$request->setRouteResolver(fn () => $route);
$this->events->dispatch(new RouteMatched($route, $request));
return $this->prepareResponse($request,
$this->runRouteWithinStack($route, $request)
);
}
/**
* Run the given route within a Stack "onion" instance.
* @param \Illuminate\Http\Request $request
* @return \Symfony\Component\HttpFoundation\Response
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
}
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$response = $next($request);
if ($response instanceof Response && SupportDisablingBackButtonCache::$disableBackButtonCache){
$response->headers->add([
'Pragma' => 'no-cache',
'Expires' => 'Fri, 01 Jan 1990 00:00:00 GMT',
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
*/
public function handle($request, Closure $next)
{
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
if ($callback($request)) {
return $next($request);
}
}
return parent::handle($request, $next);
}
/**
* Transform the given value.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
*/
public function handle($request, Closure $next)
{
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
if ($callback($request)) {
return $next($request);
}
}
return parent::handle($request, $next);
}
/**
* Transform the given value.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
throw new PostTooLargeException;
}
return $next($request);
}
/**
* Determine the server 'post_max_size' as bytes.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
null,
$this->getHeaders($data)
);
}
return $next($request);
}
/**
* Determine if the incoming request has a maintenance mode bypass cookie.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
* @return \Illuminate\Http\Response
*/
public function handle($request, Closure $next)
{
if (! $this->hasMatchingPath($request)) {
return $next($request);
}
$this->cors->setOptions($this->container['config']->get('cors', []));
if ($this->cors->isPreflightRequest($request)) {
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
{
$request::setTrustedProxies([], $this->getTrustedHeaderNames());
$this->setTrustedProxyIpAddresses($request);
return $next($request);
}
/**
* Sets the trusted proxies on the request.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
use Illuminate\Support\Facades\Route;
class RecordVisitorStatistics
{
public function handle($request, Closure $next)
{
$response = $next($request);
$user_id = Auth::check() ? Auth::id() : null;
$destinationLink = $request->fullUrl();
$ipAddress = $request->ip();
$userAgent = $request->header('User-Agent');
// 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);
{
$pipeline = array_reduce(
array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
$this->requestStartedAt = Carbon::now();
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Throwable $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
}
return __DIR__;
});
*/
$kernel = $app->make(Kernel::class);
$response = $kernel->handle(
$request = Request::capture()
)->send();
$kernel->terminate($request, $response);
<?php echo e($category->category->title); ?>،
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?></span></div>
<p class="font-light leading-relaxed text-center text-gray-100 text-lg md:text-2xl lg:text-3xl w-10/12 lg:w-5/12 mx-auto"><?php echo e($post->description); ?></p>
<div class="flex gap-3 items-center justify-center">
<div class="w-10 h-10 rounded-full">
<img src="<?php echo e(asset($post->author->avatar)); ?>">
</div>
<p class="text-xs text-gray-100"><?php echo e($post->author->name); ?></p>
<p class="text-gray-100"><?php echo e(jdate( $post->created_at )->format('Y/m/d')); ?></p>
</div>
</div>
* @return callable
*/
protected function forwardsTo($method)
{
return fn (...$arguments) => static::$app
? $this->{$method}(...$arguments)
: false;
}
/**
* Determine if the error level is a deprecation.
<?php echo e($category->category->title); ?>،
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?></span></div>
<p class="font-light leading-relaxed text-center text-gray-100 text-lg md:text-2xl lg:text-3xl w-10/12 lg:w-5/12 mx-auto"><?php echo e($post->description); ?></p>
<div class="flex gap-3 items-center justify-center">
<div class="w-10 h-10 rounded-full">
<img src="<?php echo e(asset($post->author->avatar)); ?>">
</div>
<p class="text-xs text-gray-100"><?php echo e($post->author->name); ?></p>
<p class="text-gray-100"><?php echo e(jdate( $post->created_at )->format('Y/m/d')); ?></p>
</div>
</div>
$__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}.");
}
return (static function () use ($__path, $__data) {
extract($__data, EXTR_SKIP);
return require $__path;
})();
}
throw new FileNotFoundException("File does not exist at path {$path}.");
}
// 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());
}
protected function evaluatePath($__path, $__data)
{
if (! ExtendBlade::isRenderingLivewireComponent()) {
return parent::evaluatePath($__path, $__data);
}
$obLevel = ob_get_level();
ob_start();
// 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;
}
use function Livewire\trigger;
class ExtendedCompilerEngine extends \Illuminate\View\Engines\CompilerEngine {
public function get($path, array $data = [])
{
if (! ExtendBlade::isRenderingLivewireComponent()) return parent::get($path, $data);
$currentComponent = ExtendBlade::currentRendering();
trigger('view:compile', $currentComponent, $path);
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
// clear out the sections for any separate views that may be rendered.
$this->factory->incrementRender();
$this->factory->callComposer($this);
$contents = $this->getContents();
// Once we've finished rendering the view, we'll decrement the render count
// so that each section gets flushed out next time a view is created and
// no old sections are staying around in the memory of an environment.
$this->factory->decrementRender();
* @throws \Throwable
*/
public function render(?callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? $callback($this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
// 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;
*/
public function __construct($content = '', $status = 200, array $headers = [])
{
$this->headers = new ResponseHeaderBag($headers);
$this->setContent($content);
$this->setStatusCode($status);
$this->setProtocolVersion('1.0');
}
/**
$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();
}
*/
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));
});
}
/**
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(fn ($request) => $this->prepareResponse(
$request, $route->run()
));
}
/**
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
}
}
throw $exception;
}
return $next($request);
}
}
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
$this->isReading($request) ||
$this->runningUnitTests() ||
$this->inExceptArray($request) ||
$this->tokensMatch($request)
) {
return tap($next($request), function ($response) use ($request) {
if ($this->shouldAddXsrfTokenCookie()) {
$this->addCookieToResponse($request, $response);
}
});
}
// 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);
// Putting the errors in the view for every view allows the developer to just
// assume that some errors are always available, which is convenient since
// they don't have to continually run checks for the presence of errors.
return $next($request);
}
}
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
$this->startSession($request, $session)
);
$this->collectGarbage($session);
$response = $next($request);
$this->storeCurrentUrl($request, $session);
$this->addCookieToResponse($response, $session);
if ($this->manager->shouldBlock() ||
($request->route() instanceof Route && $request->route()->locksFor())) {
return $this->handleRequestWhileBlocking($request, $session, $next);
}
return $this->handleStatefulRequest($request, $session, $next);
}
/**
* Handle the given request within session state.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$response = $next($request);
foreach ($this->cookies->getQueuedCookies() as $cookie) {
$response->headers->setCookie($cookie);
}
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
* @param \Closure $next
* @return \Symfony\Component\HttpFoundation\Response
*/
public function handle($request, Closure $next)
{
return $this->encrypt($next($this->decrypt($request)));
}
/**
* Decrypt the cookies on the request.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
{
$pipeline = array_reduce(
array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(fn ($request) => $this->prepareResponse(
$request, $route->run()
));
}
/**
$request->setRouteResolver(fn () => $route);
$this->events->dispatch(new RouteMatched($route, $request));
return $this->prepareResponse($request,
$this->runRouteWithinStack($route, $request)
);
}
/**
* Run the given route within a Stack "onion" instance.
* @param \Illuminate\Http\Request $request
* @return \Symfony\Component\HttpFoundation\Response
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
}
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$response = $next($request);
if ($response instanceof Response && SupportDisablingBackButtonCache::$disableBackButtonCache){
$response->headers->add([
'Pragma' => 'no-cache',
'Expires' => 'Fri, 01 Jan 1990 00:00:00 GMT',
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
*/
public function handle($request, Closure $next)
{
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
if ($callback($request)) {
return $next($request);
}
}
return parent::handle($request, $next);
}
/**
* Transform the given value.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
*/
public function handle($request, Closure $next)
{
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
if ($callback($request)) {
return $next($request);
}
}
return parent::handle($request, $next);
}
/**
* Transform the given value.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
throw new PostTooLargeException;
}
return $next($request);
}
/**
* Determine the server 'post_max_size' as bytes.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
null,
$this->getHeaders($data)
);
}
return $next($request);
}
/**
* Determine if the incoming request has a maintenance mode bypass cookie.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
* @return \Illuminate\Http\Response
*/
public function handle($request, Closure $next)
{
if (! $this->hasMatchingPath($request)) {
return $next($request);
}
$this->cors->setOptions($this->container['config']->get('cors', []));
if ($this->cors->isPreflightRequest($request)) {
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
{
$request::setTrustedProxies([], $this->getTrustedHeaderNames());
$this->setTrustedProxyIpAddresses($request);
return $next($request);
}
/**
* Sets the trusted proxies on the request.
*
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
use Illuminate\Support\Facades\Route;
class RecordVisitorStatistics
{
public function handle($request, Closure $next)
{
$response = $next($request);
$user_id = Auth::check() ? Auth::id() : null;
$destinationLink = $request->fullUrl();
$ipAddress = $request->ip();
$userAgent = $request->header('User-Agent');
// 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);
{
$pipeline = array_reduce(
array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
$this->requestStartedAt = Carbon::now();
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Throwable $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
}
return __DIR__;
});
*/
$kernel = $app->make(Kernel::class);
$response = $kernel->handle(
$request = Request::capture()
)->send();
$kernel->terminate($request, $response);
[2/2]
ViewException
|
---|
Illuminate\View\ViewException: Attempt to read property "avatar" on null (View: /var/www/html/Modules/Blog/Resources/views/theme_master/post/show.blade.php) at /var/www/html/storage/framework/views/7da7e8a46e8384801b05e62c1f85d1c5.php:13 at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 0) (/var/www/html/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:58) at Livewire\Mechanisms\ExtendBlade\ExtendedCompilerEngine->handleViewException(object(ErrorException), 0) (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:60) at Illuminate\View\Engines\PhpEngine->evaluatePath('/var/www/html/storage/framework/views/7da7e8a46e8384801b05e62c1f85d1c5.php', array('__env' => object(Factory), 'app' => object(Application), 'back_menus' => array('Blog' => array('posts' => array('title' => 'مقالات', 'icon' => 'pen-tool', 'sub_items' => array('item1_sub' => array('title' => 'لیست مقالات', 'route' => 'admin.blog.posts.index', 'icon' => 'list'), 'cat' => array('title' => 'لیست دسته بندی ها', 'route' => 'admin.blog.post-category.index', 'icon' => 'list')))), 'Core' => array('item1' => array('title' => 'تنظیمات', 'icon' => 'settings', 'sub_items' => array('item1_sub' => array('title' => 'تنظیمات اصلی', 'route' => 'admin.core.setting.main-setting', 'icon' => 'sliders'))), 'item2' => array('title' => 'اسلایدر', 'icon' => 'image', 'route' => 'admin.core.sliders.index'), 'item3' => array('title' => 'مديریت صفحات', 'icon' => 'settings', 'route' => 'admin.core.blocks.index'), 'item4' => array('title' => 'مديریت فهرست', 'icon' => 'settings', 'route' => 'admin.core.menus.index'), 'item5' => array('title' => 'مديریت فایل', 'icon' => 'settings', 'route' => 'admin.core.file-manager-f')), 'Shop' => array('item1_sub' => array('title' => 'کاتالوگ محصولات', 'route' => 'admin.shop.product-catalog.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'محصولات', 'route' => 'admin.shop.product.index', 'icon' => 'list'), 'item22_sub' => array('title' => 'رنگ محصولات', 'route' => 'admin.shop.product-color.index', 'icon' => 'sliders'), 'attribute' => array('title' => 'ویژگی محصولات', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => ' گروه بندی ', 'route' => 'admin.shop.attribute-group.index', 'icon' => 'list'), 'item2_sub' => array('title' => ' ویژگی ها ', 'route' => 'admin.shop.attribute.index', 'icon' => 'list'), 'item3_sub' => array('title' => ' مقادیر ویژگی ', 'route' => 'admin.shop.attribute-value.index', 'icon' => 'list'))), 'item9_sub' => array('title' => 'محصولات با تعداد کم', 'route' => 'admin.shop.product.lowCount', 'icon' => 'list'), 'item2_sub' => array('title' => ' دسته بندی', 'route' => 'admin.shop.product-catalog-category.index', 'icon' => 'list'), 'item4_sub' => array('title' => ' برند ها ', 'route' => 'admin.shop.brand.index', 'icon' => 'list'), 'item7_sub' => array('title' => 'گردونه شانس', 'route' => 'admin.shop.luckyWheel.index', 'icon' => 'list'), 'item10_sub' => array('title' => 'برندگان گردونه شانس', 'route' => 'admin.shop.luckyWheel.winners', 'icon' => 'list'), 'item8_sub' => array('title' => 'کالا های مرجوع شده', 'route' => 'admin.shop.refund.index', 'icon' => 'list'), 'item6_sub' => array('title' => 'کامنت ها', 'route' => 'admin.core.comments.index', 'icon' => 'list'), 'discount' => array('title' => 'مدیریت تخفیف ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست کد های تخفیف', 'route' => 'admin.shop.copan.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'افزودن کد تخفیف', 'route' => 'admin.shop.copan.create', 'icon' => 'feather'))), 'payments' => array('title' => 'پرداخت ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست پرداخت ها', 'route' => 'admin.shop.payments.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'فیش های بانکی', 'route' => 'admin.shop.payments.index-rec', 'icon' => 'list'))), 'orders' => array('title' => ' سفارشات ', 'route' => 'admin.shop.orders.index', 'icon' => 'list'), 'taraz-with-text' => array('title' => 'آپدیت تراز', 'route' => 'admin.shop.product.update-taraz-with-text', 'icon' => 'list'), 'moheb-transaction' => array('title' => 'آپدیت تراکنش های محب', 'route' => 'admin.shop.moheb.update-form', 'icon' => 'list'), 'delivery' => array('title' => 'راه های ارسال', 'route' => 'admin.shop.delivery.index', 'icon' => 'list')), 'User' => array('users' => array('title' => 'کاربران', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست کاربران', 'route' => 'admin.user.users.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'لیست کاربران حقوقی', 'route' => 'admin.user.users-company.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'کاربران خبرنامه', 'route' => 'admin.user.subscribe-users.index', 'icon' => 'list'), 'item4_sub' => array('title' => 'ارسال پیام', 'route' => 'admin.user.send-sms.index', 'icon' => 'list'))), 'users_tickets' => array('title' => 'پیام ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست پیام ها', 'route' => 'admin.user.tickets.index', 'icon' => 'list'))), 'departments' => array('title' => 'دپارتمان ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست دپارتمان ها', 'route' => 'admin.user.departments.index', 'icon' => 'list'))))), 'errors' => object(ViewErrorBag), 'post' => object(Post), 'instantNews' => object(Collection), 'nextPost' => object(Post), 'previousPost' => null)) (/var/www/html/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:22) at Livewire\Mechanisms\ExtendBlade\ExtendedCompilerEngine->evaluatePath('/var/www/html/storage/framework/views/7da7e8a46e8384801b05e62c1f85d1c5.php', array('__env' => object(Factory), 'app' => object(Application), 'back_menus' => array('Blog' => array('posts' => array('title' => 'مقالات', 'icon' => 'pen-tool', 'sub_items' => array('item1_sub' => array('title' => 'لیست مقالات', 'route' => 'admin.blog.posts.index', 'icon' => 'list'), 'cat' => array('title' => 'لیست دسته بندی ها', 'route' => 'admin.blog.post-category.index', 'icon' => 'list')))), 'Core' => array('item1' => array('title' => 'تنظیمات', 'icon' => 'settings', 'sub_items' => array('item1_sub' => array('title' => 'تنظیمات اصلی', 'route' => 'admin.core.setting.main-setting', 'icon' => 'sliders'))), 'item2' => array('title' => 'اسلایدر', 'icon' => 'image', 'route' => 'admin.core.sliders.index'), 'item3' => array('title' => 'مديریت صفحات', 'icon' => 'settings', 'route' => 'admin.core.blocks.index'), 'item4' => array('title' => 'مديریت فهرست', 'icon' => 'settings', 'route' => 'admin.core.menus.index'), 'item5' => array('title' => 'مديریت فایل', 'icon' => 'settings', 'route' => 'admin.core.file-manager-f')), 'Shop' => array('item1_sub' => array('title' => 'کاتالوگ محصولات', 'route' => 'admin.shop.product-catalog.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'محصولات', 'route' => 'admin.shop.product.index', 'icon' => 'list'), 'item22_sub' => array('title' => 'رنگ محصولات', 'route' => 'admin.shop.product-color.index', 'icon' => 'sliders'), 'attribute' => array('title' => 'ویژگی محصولات', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => ' گروه بندی ', 'route' => 'admin.shop.attribute-group.index', 'icon' => 'list'), 'item2_sub' => array('title' => ' ویژگی ها ', 'route' => 'admin.shop.attribute.index', 'icon' => 'list'), 'item3_sub' => array('title' => ' مقادیر ویژگی ', 'route' => 'admin.shop.attribute-value.index', 'icon' => 'list'))), 'item9_sub' => array('title' => 'محصولات با تعداد کم', 'route' => 'admin.shop.product.lowCount', 'icon' => 'list'), 'item2_sub' => array('title' => ' دسته بندی', 'route' => 'admin.shop.product-catalog-category.index', 'icon' => 'list'), 'item4_sub' => array('title' => ' برند ها ', 'route' => 'admin.shop.brand.index', 'icon' => 'list'), 'item7_sub' => array('title' => 'گردونه شانس', 'route' => 'admin.shop.luckyWheel.index', 'icon' => 'list'), 'item10_sub' => array('title' => 'برندگان گردونه شانس', 'route' => 'admin.shop.luckyWheel.winners', 'icon' => 'list'), 'item8_sub' => array('title' => 'کالا های مرجوع شده', 'route' => 'admin.shop.refund.index', 'icon' => 'list'), 'item6_sub' => array('title' => 'کامنت ها', 'route' => 'admin.core.comments.index', 'icon' => 'list'), 'discount' => array('title' => 'مدیریت تخفیف ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست کد های تخفیف', 'route' => 'admin.shop.copan.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'افزودن کد تخفیف', 'route' => 'admin.shop.copan.create', 'icon' => 'feather'))), 'payments' => array('title' => 'پرداخت ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست پرداخت ها', 'route' => 'admin.shop.payments.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'فیش های بانکی', 'route' => 'admin.shop.payments.index-rec', 'icon' => 'list'))), 'orders' => array('title' => ' سفارشات ', 'route' => 'admin.shop.orders.index', 'icon' => 'list'), 'taraz-with-text' => array('title' => 'آپدیت تراز', 'route' => 'admin.shop.product.update-taraz-with-text', 'icon' => 'list'), 'moheb-transaction' => array('title' => 'آپدیت تراکنش های محب', 'route' => 'admin.shop.moheb.update-form', 'icon' => 'list'), 'delivery' => array('title' => 'راه های ارسال', 'route' => 'admin.shop.delivery.index', 'icon' => 'list')), 'User' => array('users' => array('title' => 'کاربران', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست کاربران', 'route' => 'admin.user.users.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'لیست کاربران حقوقی', 'route' => 'admin.user.users-company.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'کاربران خبرنامه', 'route' => 'admin.user.subscribe-users.index', 'icon' => 'list'), 'item4_sub' => array('title' => 'ارسال پیام', 'route' => 'admin.user.send-sms.index', 'icon' => 'list'))), 'users_tickets' => array('title' => 'پیام ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست پیام ها', 'route' => 'admin.user.tickets.index', 'icon' => 'list'))), 'departments' => array('title' => 'دپارتمان ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست دپارتمان ها', 'route' => 'admin.user.departments.index', 'icon' => 'list'))))), 'errors' => object(ViewErrorBag), 'post' => object(Post), 'instantNews' => object(Collection), 'nextPost' => object(Post), 'previousPost' => null)) (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get('/var/www/html/Modules/Blog/Resources/views/theme_master/post/show.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'back_menus' => array('Blog' => array('posts' => array('title' => 'مقالات', 'icon' => 'pen-tool', 'sub_items' => array('item1_sub' => array('title' => 'لیست مقالات', 'route' => 'admin.blog.posts.index', 'icon' => 'list'), 'cat' => array('title' => 'لیست دسته بندی ها', 'route' => 'admin.blog.post-category.index', 'icon' => 'list')))), 'Core' => array('item1' => array('title' => 'تنظیمات', 'icon' => 'settings', 'sub_items' => array('item1_sub' => array('title' => 'تنظیمات اصلی', 'route' => 'admin.core.setting.main-setting', 'icon' => 'sliders'))), 'item2' => array('title' => 'اسلایدر', 'icon' => 'image', 'route' => 'admin.core.sliders.index'), 'item3' => array('title' => 'مديریت صفحات', 'icon' => 'settings', 'route' => 'admin.core.blocks.index'), 'item4' => array('title' => 'مديریت فهرست', 'icon' => 'settings', 'route' => 'admin.core.menus.index'), 'item5' => array('title' => 'مديریت فایل', 'icon' => 'settings', 'route' => 'admin.core.file-manager-f')), 'Shop' => array('item1_sub' => array('title' => 'کاتالوگ محصولات', 'route' => 'admin.shop.product-catalog.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'محصولات', 'route' => 'admin.shop.product.index', 'icon' => 'list'), 'item22_sub' => array('title' => 'رنگ محصولات', 'route' => 'admin.shop.product-color.index', 'icon' => 'sliders'), 'attribute' => array('title' => 'ویژگی محصولات', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => ' گروه بندی ', 'route' => 'admin.shop.attribute-group.index', 'icon' => 'list'), 'item2_sub' => array('title' => ' ویژگی ها ', 'route' => 'admin.shop.attribute.index', 'icon' => 'list'), 'item3_sub' => array('title' => ' مقادیر ویژگی ', 'route' => 'admin.shop.attribute-value.index', 'icon' => 'list'))), 'item9_sub' => array('title' => 'محصولات با تعداد کم', 'route' => 'admin.shop.product.lowCount', 'icon' => 'list'), 'item2_sub' => array('title' => ' دسته بندی', 'route' => 'admin.shop.product-catalog-category.index', 'icon' => 'list'), 'item4_sub' => array('title' => ' برند ها ', 'route' => 'admin.shop.brand.index', 'icon' => 'list'), 'item7_sub' => array('title' => 'گردونه شانس', 'route' => 'admin.shop.luckyWheel.index', 'icon' => 'list'), 'item10_sub' => array('title' => 'برندگان گردونه شانس', 'route' => 'admin.shop.luckyWheel.winners', 'icon' => 'list'), 'item8_sub' => array('title' => 'کالا های مرجوع شده', 'route' => 'admin.shop.refund.index', 'icon' => 'list'), 'item6_sub' => array('title' => 'کامنت ها', 'route' => 'admin.core.comments.index', 'icon' => 'list'), 'discount' => array('title' => 'مدیریت تخفیف ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست کد های تخفیف', 'route' => 'admin.shop.copan.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'افزودن کد تخفیف', 'route' => 'admin.shop.copan.create', 'icon' => 'feather'))), 'payments' => array('title' => 'پرداخت ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست پرداخت ها', 'route' => 'admin.shop.payments.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'فیش های بانکی', 'route' => 'admin.shop.payments.index-rec', 'icon' => 'list'))), 'orders' => array('title' => ' سفارشات ', 'route' => 'admin.shop.orders.index', 'icon' => 'list'), 'taraz-with-text' => array('title' => 'آپدیت تراز', 'route' => 'admin.shop.product.update-taraz-with-text', 'icon' => 'list'), 'moheb-transaction' => array('title' => 'آپدیت تراکنش های محب', 'route' => 'admin.shop.moheb.update-form', 'icon' => 'list'), 'delivery' => array('title' => 'راه های ارسال', 'route' => 'admin.shop.delivery.index', 'icon' => 'list')), 'User' => array('users' => array('title' => 'کاربران', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست کاربران', 'route' => 'admin.user.users.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'لیست کاربران حقوقی', 'route' => 'admin.user.users-company.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'کاربران خبرنامه', 'route' => 'admin.user.subscribe-users.index', 'icon' => 'list'), 'item4_sub' => array('title' => 'ارسال پیام', 'route' => 'admin.user.send-sms.index', 'icon' => 'list'))), 'users_tickets' => array('title' => 'پیام ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست پیام ها', 'route' => 'admin.user.tickets.index', 'icon' => 'list'))), 'departments' => array('title' => 'دپارتمان ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست دپارتمان ها', 'route' => 'admin.user.departments.index', 'icon' => 'list'))))), 'errors' => object(ViewErrorBag), 'post' => object(Post), 'instantNews' => object(Collection), 'nextPost' => object(Post), 'previousPost' => null)) (/var/www/html/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:10) at Livewire\Mechanisms\ExtendBlade\ExtendedCompilerEngine->get('/var/www/html/Modules/Blog/Resources/views/theme_master/post/show.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'back_menus' => array('Blog' => array('posts' => array('title' => 'مقالات', 'icon' => 'pen-tool', 'sub_items' => array('item1_sub' => array('title' => 'لیست مقالات', 'route' => 'admin.blog.posts.index', 'icon' => 'list'), 'cat' => array('title' => 'لیست دسته بندی ها', 'route' => 'admin.blog.post-category.index', 'icon' => 'list')))), 'Core' => array('item1' => array('title' => 'تنظیمات', 'icon' => 'settings', 'sub_items' => array('item1_sub' => array('title' => 'تنظیمات اصلی', 'route' => 'admin.core.setting.main-setting', 'icon' => 'sliders'))), 'item2' => array('title' => 'اسلایدر', 'icon' => 'image', 'route' => 'admin.core.sliders.index'), 'item3' => array('title' => 'مديریت صفحات', 'icon' => 'settings', 'route' => 'admin.core.blocks.index'), 'item4' => array('title' => 'مديریت فهرست', 'icon' => 'settings', 'route' => 'admin.core.menus.index'), 'item5' => array('title' => 'مديریت فایل', 'icon' => 'settings', 'route' => 'admin.core.file-manager-f')), 'Shop' => array('item1_sub' => array('title' => 'کاتالوگ محصولات', 'route' => 'admin.shop.product-catalog.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'محصولات', 'route' => 'admin.shop.product.index', 'icon' => 'list'), 'item22_sub' => array('title' => 'رنگ محصولات', 'route' => 'admin.shop.product-color.index', 'icon' => 'sliders'), 'attribute' => array('title' => 'ویژگی محصولات', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => ' گروه بندی ', 'route' => 'admin.shop.attribute-group.index', 'icon' => 'list'), 'item2_sub' => array('title' => ' ویژگی ها ', 'route' => 'admin.shop.attribute.index', 'icon' => 'list'), 'item3_sub' => array('title' => ' مقادیر ویژگی ', 'route' => 'admin.shop.attribute-value.index', 'icon' => 'list'))), 'item9_sub' => array('title' => 'محصولات با تعداد کم', 'route' => 'admin.shop.product.lowCount', 'icon' => 'list'), 'item2_sub' => array('title' => ' دسته بندی', 'route' => 'admin.shop.product-catalog-category.index', 'icon' => 'list'), 'item4_sub' => array('title' => ' برند ها ', 'route' => 'admin.shop.brand.index', 'icon' => 'list'), 'item7_sub' => array('title' => 'گردونه شانس', 'route' => 'admin.shop.luckyWheel.index', 'icon' => 'list'), 'item10_sub' => array('title' => 'برندگان گردونه شانس', 'route' => 'admin.shop.luckyWheel.winners', 'icon' => 'list'), 'item8_sub' => array('title' => 'کالا های مرجوع شده', 'route' => 'admin.shop.refund.index', 'icon' => 'list'), 'item6_sub' => array('title' => 'کامنت ها', 'route' => 'admin.core.comments.index', 'icon' => 'list'), 'discount' => array('title' => 'مدیریت تخفیف ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست کد های تخفیف', 'route' => 'admin.shop.copan.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'افزودن کد تخفیف', 'route' => 'admin.shop.copan.create', 'icon' => 'feather'))), 'payments' => array('title' => 'پرداخت ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست پرداخت ها', 'route' => 'admin.shop.payments.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'فیش های بانکی', 'route' => 'admin.shop.payments.index-rec', 'icon' => 'list'))), 'orders' => array('title' => ' سفارشات ', 'route' => 'admin.shop.orders.index', 'icon' => 'list'), 'taraz-with-text' => array('title' => 'آپدیت تراز', 'route' => 'admin.shop.product.update-taraz-with-text', 'icon' => 'list'), 'moheb-transaction' => array('title' => 'آپدیت تراکنش های محب', 'route' => 'admin.shop.moheb.update-form', 'icon' => 'list'), 'delivery' => array('title' => 'راه های ارسال', 'route' => 'admin.shop.delivery.index', 'icon' => 'list')), 'User' => array('users' => array('title' => 'کاربران', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست کاربران', 'route' => 'admin.user.users.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'لیست کاربران حقوقی', 'route' => 'admin.user.users-company.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'کاربران خبرنامه', 'route' => 'admin.user.subscribe-users.index', 'icon' => 'list'), 'item4_sub' => array('title' => 'ارسال پیام', 'route' => 'admin.user.send-sms.index', 'icon' => 'list'))), 'users_tickets' => array('title' => 'پیام ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست پیام ها', 'route' => 'admin.user.tickets.index', 'icon' => 'list'))), 'departments' => array('title' => 'دپارتمان ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست دپارتمان ها', 'route' => 'admin.user.departments.index', 'icon' => 'list'))))), 'errors' => object(ViewErrorBag), 'post' => object(Post), 'instantNews' => object(Collection), 'nextPost' => object(Post), 'previousPost' => null)) (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:207) at Illuminate\View\View->getContents() (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:190) at Illuminate\View\View->renderContents() (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:159) at Illuminate\View\View->render() (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Response.php:69) at Illuminate\Http\Response->setContent(object(View)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Response.php:35) at Illuminate\Http\Response->__construct(object(View), 200, array('Content-Type' => 'text/html')) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:918) at Illuminate\Routing\Router::toResponse(object(Request), object(View)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:885) at Illuminate\Routing\Router->prepareResponse(object(Request), object(View)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805) at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50) at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78) at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49) at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121) at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64) at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37) at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67) at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119) at Illuminate\Pipeline\Pipeline->then(object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805) at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:784) at Illuminate\Routing\Router->runRoute(object(Request), object(Route)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748) at Illuminate\Routing\Router->dispatchToRoute(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:737) at Illuminate\Routing\Router->dispatch(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200) at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php:19) at Livewire\Features\SupportDisablingBackButtonCache\DisableBackButtonCacheMiddleware->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21) at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31) at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21) at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40) at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27) at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:99) at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:49) at Illuminate\Http\Middleware\HandleCors->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39) at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/app/Http/Middleware/RecordVisitorStatistics.php:13) at App\Http\Middleware\RecordVisitorStatistics->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119) at Illuminate\Pipeline\Pipeline->then(object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175) at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144) at Illuminate\Foundation\Http\Kernel->handle(object(Request)) (/var/www/html/public/index.php:60) |
[1/2]
ErrorException
|
---|
ErrorException: Attempt to read property "avatar" on null at /var/www/html/storage/framework/views/7da7e8a46e8384801b05e62c1f85d1c5.php:13 at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'Attempt to read property "avatar" on null', '/var/www/html/storage/framework/views/7da7e8a46e8384801b05e62c1f85d1c5.php', 13) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:255) at Illuminate\Foundation\Bootstrap\HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}(2, 'Attempt to read property "avatar" on null', '/var/www/html/storage/framework/views/7da7e8a46e8384801b05e62c1f85d1c5.php', 13) (/var/www/html/storage/framework/views/7da7e8a46e8384801b05e62c1f85d1c5.php:13) at require('/var/www/html/storage/framework/views/7da7e8a46e8384801b05e62c1f85d1c5.php') (/var/www/html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:123) at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}() (/var/www/html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:124) at Illuminate\Filesystem\Filesystem->getRequire('/var/www/html/storage/framework/views/7da7e8a46e8384801b05e62c1f85d1c5.php', array('__env' => object(Factory), 'app' => object(Application), 'back_menus' => array('Blog' => array('posts' => array('title' => 'مقالات', 'icon' => 'pen-tool', 'sub_items' => array('item1_sub' => array('title' => 'لیست مقالات', 'route' => 'admin.blog.posts.index', 'icon' => 'list'), 'cat' => array('title' => 'لیست دسته بندی ها', 'route' => 'admin.blog.post-category.index', 'icon' => 'list')))), 'Core' => array('item1' => array('title' => 'تنظیمات', 'icon' => 'settings', 'sub_items' => array('item1_sub' => array('title' => 'تنظیمات اصلی', 'route' => 'admin.core.setting.main-setting', 'icon' => 'sliders'))), 'item2' => array('title' => 'اسلایدر', 'icon' => 'image', 'route' => 'admin.core.sliders.index'), 'item3' => array('title' => 'مديریت صفحات', 'icon' => 'settings', 'route' => 'admin.core.blocks.index'), 'item4' => array('title' => 'مديریت فهرست', 'icon' => 'settings', 'route' => 'admin.core.menus.index'), 'item5' => array('title' => 'مديریت فایل', 'icon' => 'settings', 'route' => 'admin.core.file-manager-f')), 'Shop' => array('item1_sub' => array('title' => 'کاتالوگ محصولات', 'route' => 'admin.shop.product-catalog.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'محصولات', 'route' => 'admin.shop.product.index', 'icon' => 'list'), 'item22_sub' => array('title' => 'رنگ محصولات', 'route' => 'admin.shop.product-color.index', 'icon' => 'sliders'), 'attribute' => array('title' => 'ویژگی محصولات', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => ' گروه بندی ', 'route' => 'admin.shop.attribute-group.index', 'icon' => 'list'), 'item2_sub' => array('title' => ' ویژگی ها ', 'route' => 'admin.shop.attribute.index', 'icon' => 'list'), 'item3_sub' => array('title' => ' مقادیر ویژگی ', 'route' => 'admin.shop.attribute-value.index', 'icon' => 'list'))), 'item9_sub' => array('title' => 'محصولات با تعداد کم', 'route' => 'admin.shop.product.lowCount', 'icon' => 'list'), 'item2_sub' => array('title' => ' دسته بندی', 'route' => 'admin.shop.product-catalog-category.index', 'icon' => 'list'), 'item4_sub' => array('title' => ' برند ها ', 'route' => 'admin.shop.brand.index', 'icon' => 'list'), 'item7_sub' => array('title' => 'گردونه شانس', 'route' => 'admin.shop.luckyWheel.index', 'icon' => 'list'), 'item10_sub' => array('title' => 'برندگان گردونه شانس', 'route' => 'admin.shop.luckyWheel.winners', 'icon' => 'list'), 'item8_sub' => array('title' => 'کالا های مرجوع شده', 'route' => 'admin.shop.refund.index', 'icon' => 'list'), 'item6_sub' => array('title' => 'کامنت ها', 'route' => 'admin.core.comments.index', 'icon' => 'list'), 'discount' => array('title' => 'مدیریت تخفیف ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست کد های تخفیف', 'route' => 'admin.shop.copan.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'افزودن کد تخفیف', 'route' => 'admin.shop.copan.create', 'icon' => 'feather'))), 'payments' => array('title' => 'پرداخت ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست پرداخت ها', 'route' => 'admin.shop.payments.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'فیش های بانکی', 'route' => 'admin.shop.payments.index-rec', 'icon' => 'list'))), 'orders' => array('title' => ' سفارشات ', 'route' => 'admin.shop.orders.index', 'icon' => 'list'), 'taraz-with-text' => array('title' => 'آپدیت تراز', 'route' => 'admin.shop.product.update-taraz-with-text', 'icon' => 'list'), 'moheb-transaction' => array('title' => 'آپدیت تراکنش های محب', 'route' => 'admin.shop.moheb.update-form', 'icon' => 'list'), 'delivery' => array('title' => 'راه های ارسال', 'route' => 'admin.shop.delivery.index', 'icon' => 'list')), 'User' => array('users' => array('title' => 'کاربران', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست کاربران', 'route' => 'admin.user.users.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'لیست کاربران حقوقی', 'route' => 'admin.user.users-company.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'کاربران خبرنامه', 'route' => 'admin.user.subscribe-users.index', 'icon' => 'list'), 'item4_sub' => array('title' => 'ارسال پیام', 'route' => 'admin.user.send-sms.index', 'icon' => 'list'))), 'users_tickets' => array('title' => 'پیام ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست پیام ها', 'route' => 'admin.user.tickets.index', 'icon' => 'list'))), 'departments' => array('title' => 'دپارتمان ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست دپارتمان ها', 'route' => 'admin.user.departments.index', 'icon' => 'list'))))), 'errors' => object(ViewErrorBag), 'post' => object(Post), 'instantNews' => object(Collection), 'nextPost' => object(Post), 'previousPost' => null)) (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58) at Illuminate\View\Engines\PhpEngine->evaluatePath('/var/www/html/storage/framework/views/7da7e8a46e8384801b05e62c1f85d1c5.php', array('__env' => object(Factory), 'app' => object(Application), 'back_menus' => array('Blog' => array('posts' => array('title' => 'مقالات', 'icon' => 'pen-tool', 'sub_items' => array('item1_sub' => array('title' => 'لیست مقالات', 'route' => 'admin.blog.posts.index', 'icon' => 'list'), 'cat' => array('title' => 'لیست دسته بندی ها', 'route' => 'admin.blog.post-category.index', 'icon' => 'list')))), 'Core' => array('item1' => array('title' => 'تنظیمات', 'icon' => 'settings', 'sub_items' => array('item1_sub' => array('title' => 'تنظیمات اصلی', 'route' => 'admin.core.setting.main-setting', 'icon' => 'sliders'))), 'item2' => array('title' => 'اسلایدر', 'icon' => 'image', 'route' => 'admin.core.sliders.index'), 'item3' => array('title' => 'مديریت صفحات', 'icon' => 'settings', 'route' => 'admin.core.blocks.index'), 'item4' => array('title' => 'مديریت فهرست', 'icon' => 'settings', 'route' => 'admin.core.menus.index'), 'item5' => array('title' => 'مديریت فایل', 'icon' => 'settings', 'route' => 'admin.core.file-manager-f')), 'Shop' => array('item1_sub' => array('title' => 'کاتالوگ محصولات', 'route' => 'admin.shop.product-catalog.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'محصولات', 'route' => 'admin.shop.product.index', 'icon' => 'list'), 'item22_sub' => array('title' => 'رنگ محصولات', 'route' => 'admin.shop.product-color.index', 'icon' => 'sliders'), 'attribute' => array('title' => 'ویژگی محصولات', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => ' گروه بندی ', 'route' => 'admin.shop.attribute-group.index', 'icon' => 'list'), 'item2_sub' => array('title' => ' ویژگی ها ', 'route' => 'admin.shop.attribute.index', 'icon' => 'list'), 'item3_sub' => array('title' => ' مقادیر ویژگی ', 'route' => 'admin.shop.attribute-value.index', 'icon' => 'list'))), 'item9_sub' => array('title' => 'محصولات با تعداد کم', 'route' => 'admin.shop.product.lowCount', 'icon' => 'list'), 'item2_sub' => array('title' => ' دسته بندی', 'route' => 'admin.shop.product-catalog-category.index', 'icon' => 'list'), 'item4_sub' => array('title' => ' برند ها ', 'route' => 'admin.shop.brand.index', 'icon' => 'list'), 'item7_sub' => array('title' => 'گردونه شانس', 'route' => 'admin.shop.luckyWheel.index', 'icon' => 'list'), 'item10_sub' => array('title' => 'برندگان گردونه شانس', 'route' => 'admin.shop.luckyWheel.winners', 'icon' => 'list'), 'item8_sub' => array('title' => 'کالا های مرجوع شده', 'route' => 'admin.shop.refund.index', 'icon' => 'list'), 'item6_sub' => array('title' => 'کامنت ها', 'route' => 'admin.core.comments.index', 'icon' => 'list'), 'discount' => array('title' => 'مدیریت تخفیف ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست کد های تخفیف', 'route' => 'admin.shop.copan.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'افزودن کد تخفیف', 'route' => 'admin.shop.copan.create', 'icon' => 'feather'))), 'payments' => array('title' => 'پرداخت ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست پرداخت ها', 'route' => 'admin.shop.payments.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'فیش های بانکی', 'route' => 'admin.shop.payments.index-rec', 'icon' => 'list'))), 'orders' => array('title' => ' سفارشات ', 'route' => 'admin.shop.orders.index', 'icon' => 'list'), 'taraz-with-text' => array('title' => 'آپدیت تراز', 'route' => 'admin.shop.product.update-taraz-with-text', 'icon' => 'list'), 'moheb-transaction' => array('title' => 'آپدیت تراکنش های محب', 'route' => 'admin.shop.moheb.update-form', 'icon' => 'list'), 'delivery' => array('title' => 'راه های ارسال', 'route' => 'admin.shop.delivery.index', 'icon' => 'list')), 'User' => array('users' => array('title' => 'کاربران', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست کاربران', 'route' => 'admin.user.users.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'لیست کاربران حقوقی', 'route' => 'admin.user.users-company.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'کاربران خبرنامه', 'route' => 'admin.user.subscribe-users.index', 'icon' => 'list'), 'item4_sub' => array('title' => 'ارسال پیام', 'route' => 'admin.user.send-sms.index', 'icon' => 'list'))), 'users_tickets' => array('title' => 'پیام ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست پیام ها', 'route' => 'admin.user.tickets.index', 'icon' => 'list'))), 'departments' => array('title' => 'دپارتمان ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست دپارتمان ها', 'route' => 'admin.user.departments.index', 'icon' => 'list'))))), 'errors' => object(ViewErrorBag), 'post' => object(Post), 'instantNews' => object(Collection), 'nextPost' => object(Post), 'previousPost' => null)) (/var/www/html/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:22) at Livewire\Mechanisms\ExtendBlade\ExtendedCompilerEngine->evaluatePath('/var/www/html/storage/framework/views/7da7e8a46e8384801b05e62c1f85d1c5.php', array('__env' => object(Factory), 'app' => object(Application), 'back_menus' => array('Blog' => array('posts' => array('title' => 'مقالات', 'icon' => 'pen-tool', 'sub_items' => array('item1_sub' => array('title' => 'لیست مقالات', 'route' => 'admin.blog.posts.index', 'icon' => 'list'), 'cat' => array('title' => 'لیست دسته بندی ها', 'route' => 'admin.blog.post-category.index', 'icon' => 'list')))), 'Core' => array('item1' => array('title' => 'تنظیمات', 'icon' => 'settings', 'sub_items' => array('item1_sub' => array('title' => 'تنظیمات اصلی', 'route' => 'admin.core.setting.main-setting', 'icon' => 'sliders'))), 'item2' => array('title' => 'اسلایدر', 'icon' => 'image', 'route' => 'admin.core.sliders.index'), 'item3' => array('title' => 'مديریت صفحات', 'icon' => 'settings', 'route' => 'admin.core.blocks.index'), 'item4' => array('title' => 'مديریت فهرست', 'icon' => 'settings', 'route' => 'admin.core.menus.index'), 'item5' => array('title' => 'مديریت فایل', 'icon' => 'settings', 'route' => 'admin.core.file-manager-f')), 'Shop' => array('item1_sub' => array('title' => 'کاتالوگ محصولات', 'route' => 'admin.shop.product-catalog.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'محصولات', 'route' => 'admin.shop.product.index', 'icon' => 'list'), 'item22_sub' => array('title' => 'رنگ محصولات', 'route' => 'admin.shop.product-color.index', 'icon' => 'sliders'), 'attribute' => array('title' => 'ویژگی محصولات', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => ' گروه بندی ', 'route' => 'admin.shop.attribute-group.index', 'icon' => 'list'), 'item2_sub' => array('title' => ' ویژگی ها ', 'route' => 'admin.shop.attribute.index', 'icon' => 'list'), 'item3_sub' => array('title' => ' مقادیر ویژگی ', 'route' => 'admin.shop.attribute-value.index', 'icon' => 'list'))), 'item9_sub' => array('title' => 'محصولات با تعداد کم', 'route' => 'admin.shop.product.lowCount', 'icon' => 'list'), 'item2_sub' => array('title' => ' دسته بندی', 'route' => 'admin.shop.product-catalog-category.index', 'icon' => 'list'), 'item4_sub' => array('title' => ' برند ها ', 'route' => 'admin.shop.brand.index', 'icon' => 'list'), 'item7_sub' => array('title' => 'گردونه شانس', 'route' => 'admin.shop.luckyWheel.index', 'icon' => 'list'), 'item10_sub' => array('title' => 'برندگان گردونه شانس', 'route' => 'admin.shop.luckyWheel.winners', 'icon' => 'list'), 'item8_sub' => array('title' => 'کالا های مرجوع شده', 'route' => 'admin.shop.refund.index', 'icon' => 'list'), 'item6_sub' => array('title' => 'کامنت ها', 'route' => 'admin.core.comments.index', 'icon' => 'list'), 'discount' => array('title' => 'مدیریت تخفیف ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست کد های تخفیف', 'route' => 'admin.shop.copan.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'افزودن کد تخفیف', 'route' => 'admin.shop.copan.create', 'icon' => 'feather'))), 'payments' => array('title' => 'پرداخت ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست پرداخت ها', 'route' => 'admin.shop.payments.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'فیش های بانکی', 'route' => 'admin.shop.payments.index-rec', 'icon' => 'list'))), 'orders' => array('title' => ' سفارشات ', 'route' => 'admin.shop.orders.index', 'icon' => 'list'), 'taraz-with-text' => array('title' => 'آپدیت تراز', 'route' => 'admin.shop.product.update-taraz-with-text', 'icon' => 'list'), 'moheb-transaction' => array('title' => 'آپدیت تراکنش های محب', 'route' => 'admin.shop.moheb.update-form', 'icon' => 'list'), 'delivery' => array('title' => 'راه های ارسال', 'route' => 'admin.shop.delivery.index', 'icon' => 'list')), 'User' => array('users' => array('title' => 'کاربران', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست کاربران', 'route' => 'admin.user.users.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'لیست کاربران حقوقی', 'route' => 'admin.user.users-company.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'کاربران خبرنامه', 'route' => 'admin.user.subscribe-users.index', 'icon' => 'list'), 'item4_sub' => array('title' => 'ارسال پیام', 'route' => 'admin.user.send-sms.index', 'icon' => 'list'))), 'users_tickets' => array('title' => 'پیام ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست پیام ها', 'route' => 'admin.user.tickets.index', 'icon' => 'list'))), 'departments' => array('title' => 'دپارتمان ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست دپارتمان ها', 'route' => 'admin.user.departments.index', 'icon' => 'list'))))), 'errors' => object(ViewErrorBag), 'post' => object(Post), 'instantNews' => object(Collection), 'nextPost' => object(Post), 'previousPost' => null)) (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:72) at Illuminate\View\Engines\CompilerEngine->get('/var/www/html/Modules/Blog/Resources/views/theme_master/post/show.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'back_menus' => array('Blog' => array('posts' => array('title' => 'مقالات', 'icon' => 'pen-tool', 'sub_items' => array('item1_sub' => array('title' => 'لیست مقالات', 'route' => 'admin.blog.posts.index', 'icon' => 'list'), 'cat' => array('title' => 'لیست دسته بندی ها', 'route' => 'admin.blog.post-category.index', 'icon' => 'list')))), 'Core' => array('item1' => array('title' => 'تنظیمات', 'icon' => 'settings', 'sub_items' => array('item1_sub' => array('title' => 'تنظیمات اصلی', 'route' => 'admin.core.setting.main-setting', 'icon' => 'sliders'))), 'item2' => array('title' => 'اسلایدر', 'icon' => 'image', 'route' => 'admin.core.sliders.index'), 'item3' => array('title' => 'مديریت صفحات', 'icon' => 'settings', 'route' => 'admin.core.blocks.index'), 'item4' => array('title' => 'مديریت فهرست', 'icon' => 'settings', 'route' => 'admin.core.menus.index'), 'item5' => array('title' => 'مديریت فایل', 'icon' => 'settings', 'route' => 'admin.core.file-manager-f')), 'Shop' => array('item1_sub' => array('title' => 'کاتالوگ محصولات', 'route' => 'admin.shop.product-catalog.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'محصولات', 'route' => 'admin.shop.product.index', 'icon' => 'list'), 'item22_sub' => array('title' => 'رنگ محصولات', 'route' => 'admin.shop.product-color.index', 'icon' => 'sliders'), 'attribute' => array('title' => 'ویژگی محصولات', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => ' گروه بندی ', 'route' => 'admin.shop.attribute-group.index', 'icon' => 'list'), 'item2_sub' => array('title' => ' ویژگی ها ', 'route' => 'admin.shop.attribute.index', 'icon' => 'list'), 'item3_sub' => array('title' => ' مقادیر ویژگی ', 'route' => 'admin.shop.attribute-value.index', 'icon' => 'list'))), 'item9_sub' => array('title' => 'محصولات با تعداد کم', 'route' => 'admin.shop.product.lowCount', 'icon' => 'list'), 'item2_sub' => array('title' => ' دسته بندی', 'route' => 'admin.shop.product-catalog-category.index', 'icon' => 'list'), 'item4_sub' => array('title' => ' برند ها ', 'route' => 'admin.shop.brand.index', 'icon' => 'list'), 'item7_sub' => array('title' => 'گردونه شانس', 'route' => 'admin.shop.luckyWheel.index', 'icon' => 'list'), 'item10_sub' => array('title' => 'برندگان گردونه شانس', 'route' => 'admin.shop.luckyWheel.winners', 'icon' => 'list'), 'item8_sub' => array('title' => 'کالا های مرجوع شده', 'route' => 'admin.shop.refund.index', 'icon' => 'list'), 'item6_sub' => array('title' => 'کامنت ها', 'route' => 'admin.core.comments.index', 'icon' => 'list'), 'discount' => array('title' => 'مدیریت تخفیف ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست کد های تخفیف', 'route' => 'admin.shop.copan.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'افزودن کد تخفیف', 'route' => 'admin.shop.copan.create', 'icon' => 'feather'))), 'payments' => array('title' => 'پرداخت ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست پرداخت ها', 'route' => 'admin.shop.payments.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'فیش های بانکی', 'route' => 'admin.shop.payments.index-rec', 'icon' => 'list'))), 'orders' => array('title' => ' سفارشات ', 'route' => 'admin.shop.orders.index', 'icon' => 'list'), 'taraz-with-text' => array('title' => 'آپدیت تراز', 'route' => 'admin.shop.product.update-taraz-with-text', 'icon' => 'list'), 'moheb-transaction' => array('title' => 'آپدیت تراکنش های محب', 'route' => 'admin.shop.moheb.update-form', 'icon' => 'list'), 'delivery' => array('title' => 'راه های ارسال', 'route' => 'admin.shop.delivery.index', 'icon' => 'list')), 'User' => array('users' => array('title' => 'کاربران', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست کاربران', 'route' => 'admin.user.users.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'لیست کاربران حقوقی', 'route' => 'admin.user.users-company.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'کاربران خبرنامه', 'route' => 'admin.user.subscribe-users.index', 'icon' => 'list'), 'item4_sub' => array('title' => 'ارسال پیام', 'route' => 'admin.user.send-sms.index', 'icon' => 'list'))), 'users_tickets' => array('title' => 'پیام ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست پیام ها', 'route' => 'admin.user.tickets.index', 'icon' => 'list'))), 'departments' => array('title' => 'دپارتمان ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست دپارتمان ها', 'route' => 'admin.user.departments.index', 'icon' => 'list'))))), 'errors' => object(ViewErrorBag), 'post' => object(Post), 'instantNews' => object(Collection), 'nextPost' => object(Post), 'previousPost' => null)) (/var/www/html/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php:10) at Livewire\Mechanisms\ExtendBlade\ExtendedCompilerEngine->get('/var/www/html/Modules/Blog/Resources/views/theme_master/post/show.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'back_menus' => array('Blog' => array('posts' => array('title' => 'مقالات', 'icon' => 'pen-tool', 'sub_items' => array('item1_sub' => array('title' => 'لیست مقالات', 'route' => 'admin.blog.posts.index', 'icon' => 'list'), 'cat' => array('title' => 'لیست دسته بندی ها', 'route' => 'admin.blog.post-category.index', 'icon' => 'list')))), 'Core' => array('item1' => array('title' => 'تنظیمات', 'icon' => 'settings', 'sub_items' => array('item1_sub' => array('title' => 'تنظیمات اصلی', 'route' => 'admin.core.setting.main-setting', 'icon' => 'sliders'))), 'item2' => array('title' => 'اسلایدر', 'icon' => 'image', 'route' => 'admin.core.sliders.index'), 'item3' => array('title' => 'مديریت صفحات', 'icon' => 'settings', 'route' => 'admin.core.blocks.index'), 'item4' => array('title' => 'مديریت فهرست', 'icon' => 'settings', 'route' => 'admin.core.menus.index'), 'item5' => array('title' => 'مديریت فایل', 'icon' => 'settings', 'route' => 'admin.core.file-manager-f')), 'Shop' => array('item1_sub' => array('title' => 'کاتالوگ محصولات', 'route' => 'admin.shop.product-catalog.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'محصولات', 'route' => 'admin.shop.product.index', 'icon' => 'list'), 'item22_sub' => array('title' => 'رنگ محصولات', 'route' => 'admin.shop.product-color.index', 'icon' => 'sliders'), 'attribute' => array('title' => 'ویژگی محصولات', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => ' گروه بندی ', 'route' => 'admin.shop.attribute-group.index', 'icon' => 'list'), 'item2_sub' => array('title' => ' ویژگی ها ', 'route' => 'admin.shop.attribute.index', 'icon' => 'list'), 'item3_sub' => array('title' => ' مقادیر ویژگی ', 'route' => 'admin.shop.attribute-value.index', 'icon' => 'list'))), 'item9_sub' => array('title' => 'محصولات با تعداد کم', 'route' => 'admin.shop.product.lowCount', 'icon' => 'list'), 'item2_sub' => array('title' => ' دسته بندی', 'route' => 'admin.shop.product-catalog-category.index', 'icon' => 'list'), 'item4_sub' => array('title' => ' برند ها ', 'route' => 'admin.shop.brand.index', 'icon' => 'list'), 'item7_sub' => array('title' => 'گردونه شانس', 'route' => 'admin.shop.luckyWheel.index', 'icon' => 'list'), 'item10_sub' => array('title' => 'برندگان گردونه شانس', 'route' => 'admin.shop.luckyWheel.winners', 'icon' => 'list'), 'item8_sub' => array('title' => 'کالا های مرجوع شده', 'route' => 'admin.shop.refund.index', 'icon' => 'list'), 'item6_sub' => array('title' => 'کامنت ها', 'route' => 'admin.core.comments.index', 'icon' => 'list'), 'discount' => array('title' => 'مدیریت تخفیف ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست کد های تخفیف', 'route' => 'admin.shop.copan.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'افزودن کد تخفیف', 'route' => 'admin.shop.copan.create', 'icon' => 'feather'))), 'payments' => array('title' => 'پرداخت ها', 'icon' => 'list', 'sub_items' => array('item1_sub' => array('title' => 'لیست پرداخت ها', 'route' => 'admin.shop.payments.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'فیش های بانکی', 'route' => 'admin.shop.payments.index-rec', 'icon' => 'list'))), 'orders' => array('title' => ' سفارشات ', 'route' => 'admin.shop.orders.index', 'icon' => 'list'), 'taraz-with-text' => array('title' => 'آپدیت تراز', 'route' => 'admin.shop.product.update-taraz-with-text', 'icon' => 'list'), 'moheb-transaction' => array('title' => 'آپدیت تراکنش های محب', 'route' => 'admin.shop.moheb.update-form', 'icon' => 'list'), 'delivery' => array('title' => 'راه های ارسال', 'route' => 'admin.shop.delivery.index', 'icon' => 'list')), 'User' => array('users' => array('title' => 'کاربران', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست کاربران', 'route' => 'admin.user.users.index', 'icon' => 'list'), 'item2_sub' => array('title' => 'لیست کاربران حقوقی', 'route' => 'admin.user.users-company.index', 'icon' => 'list'), 'item3_sub' => array('title' => 'کاربران خبرنامه', 'route' => 'admin.user.subscribe-users.index', 'icon' => 'list'), 'item4_sub' => array('title' => 'ارسال پیام', 'route' => 'admin.user.send-sms.index', 'icon' => 'list'))), 'users_tickets' => array('title' => 'پیام ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست پیام ها', 'route' => 'admin.user.tickets.index', 'icon' => 'list'))), 'departments' => array('title' => 'دپارتمان ها', 'icon' => 'users', 'sub_items' => array('item1_sub' => array('title' => 'لیست دپارتمان ها', 'route' => 'admin.user.departments.index', 'icon' => 'list'))))), 'errors' => object(ViewErrorBag), 'post' => object(Post), 'instantNews' => object(Collection), 'nextPost' => object(Post), 'previousPost' => null)) (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:207) at Illuminate\View\View->getContents() (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:190) at Illuminate\View\View->renderContents() (/var/www/html/vendor/laravel/framework/src/Illuminate/View/View.php:159) at Illuminate\View\View->render() (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Response.php:69) at Illuminate\Http\Response->setContent(object(View)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Response.php:35) at Illuminate\Http\Response->__construct(object(View), 200, array('Content-Type' => 'text/html')) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:918) at Illuminate\Routing\Router::toResponse(object(Request), object(View)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:885) at Illuminate\Routing\Router->prepareResponse(object(Request), object(View)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805) at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50) at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78) at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49) at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121) at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64) at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37) at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67) at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119) at Illuminate\Pipeline\Pipeline->then(object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805) at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:784) at Illuminate\Routing\Router->runRoute(object(Request), object(Route)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748) at Illuminate\Routing\Router->dispatchToRoute(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php:737) at Illuminate\Routing\Router->dispatch(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200) at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php:19) at Livewire\Features\SupportDisablingBackButtonCache\DisableBackButtonCacheMiddleware->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21) at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31) at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21) at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40) at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27) at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:99) at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:49) at Illuminate\Http\Middleware\HandleCors->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39) at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/app/Http/Middleware/RecordVisitorStatistics.php:13) at App\Http\Middleware\RecordVisitorStatistics->handle(object(Request), object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119) at Illuminate\Pipeline\Pipeline->then(object(Closure)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175) at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request)) (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144) at Illuminate\Foundation\Http\Kernel->handle(object(Request)) (/var/www/html/public/index.php:60) |