Đền Đức Hoàng - Vọng Cùng Thời Gian

ErrorException

HTTP 500 Internal Server Error

fwrite(): write of 8685 bytes failed with errno=28 No space left on device

Exception

ErrorException

in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php (line 178)
  1. *
  2. * @phpstan-param FormattedRecord $record
  3. */
  4. protected function streamWrite($stream, array $record): void
  5. {
  6. fwrite($stream, (string) $record['formatted']);
  7. }
  8. private function customErrorHandler(int $code, string $msg): bool
  9. {
  10. $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
HandleExceptions->handleError() in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php fwrite (line 178)
  1. *
  2. * @phpstan-param FormattedRecord $record
  3. */
  4. protected function streamWrite($stream, array $record): void
  5. {
  6. fwrite($stream, (string) $record['formatted']);
  7. }
  8. private function customErrorHandler(int $code, string $msg): bool
  9. {
  10. $this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php -> streamWrite (line 162)
  1. if ($this->useLocking) {
  2. // ignoring errors here, there's not much we can do about them
  3. flock($stream, LOCK_EX);
  4. }
  5. $this->streamWrite($stream, $record);
  6. if ($this->useLocking) {
  7. flock($stream, LOCK_UN);
  8. }
  9. }
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php -> write (line 125)
  1. if ($this->nextRotation <= $record['datetime']) {
  2. $this->mustRotate = true;
  3. $this->close();
  4. }
  5. parent::write($record);
  6. }
  7. /**
  8. * Rotates the files.
  9. */
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php -> write (line 48)
  1. $record = $this->processRecord($record);
  2. }
  3. $record['formatted'] = $this->getFormatter()->format($record);
  4. $this->write($record);
  5. return false === $this->bubble;
  6. }
  7. /**
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Logger.php -> handle (line 328)
  1. }
  2. }
  3. // once the record exists, send it to all handlers as long as the bubbling chain is not interrupted
  4. try {
  5. if (true === $handler->handle($record)) {
  6. break;
  7. }
  8. } catch (Throwable $e) {
  9. $this->handleException($e, $record);
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Logger.php -> addRecord (line 566)
  1. * @param string|Stringable $message The log message
  2. * @param mixed[] $context The log context
  3. */
  4. public function error($message, array $context = []): void
  5. {
  6. $this->addRecord(static::ERROR, (string) $message, $context);
  7. }
  8. /**
  9. * Adds a log record at the CRITICAL level.
  10. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php -> error (line 183)
  1. */
  2. protected function writeLog($level, $message, $context)
  3. {
  4. $this->logger->{$level}(
  5. $message = $this->formatMessage($message),
  6. $context = array_merge($this->context, $context)
  7. );
  8. $this->fireLogEvent($level, $message, $context);
  9. }
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php -> writeLog (line 94)
  1. * @param array $context
  2. * @return void
  3. */
  4. public function error($message, array $context = [])
  5. {
  6. $this->writeLog(__FUNCTION__, $message, $context);
  7. }
  8. /**
  9. * Log a warning message to the logs.
  10. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Log/LogManager.php -> error (line 590)
  1. * @param array $context
  2. * @return void
  3. */
  4. public function error($message, array $context = [])
  5. {
  6. $this->driver()->error($message, $context);
  7. }
  8. /**
  9. * Exceptional occurrences that are not errors.
  10. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php -> error (line 252)
  1. $logger->error(
  2. $e->getMessage(),
  3. array_merge(
  4. $this->exceptionContext($e),
  5. $this->context(),
  6. ['exception' => $e]
  7. )
  8. );
  9. }
  10. /**
Handler->report() in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/app/Exceptions/Handler.php (line 65)
  1. }
  2. }
  3. parent::report($e);
  4. }
  5. /**
  6. * Render an exception into an HTTP response.
  7. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php -> report (line 49)
  1. throw $e;
  2. }
  3. $handler = $this->container->make(ExceptionHandler::class);
  4. $handler->report($e);
  5. $response = $handler->render($passable, $e);
  6. if (is_object($response) && method_exists($response, 'withException')) {
  7. $response->withException($e);
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> handleException (line 130)
  1. {
  2. return function ($passable) use ($destination) {
  3. try {
  4. return $destination($passable);
  5. } catch (Throwable $e) {
  6. return $this->handleException($passable, $e);
  7. }
  8. };
  9. }
  10. /**
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/livewire/livewire/src/DisableBrowserCache.php -> Illuminate\Pipeline\{closure} (line 19)
  1. * @param \Closure $next
  2. * @return mixed
  3. */
  4. public function handle($request, Closure $next)
  5. {
  6. $response = $next($request);
  7. if ($response instanceof Response && Livewire::shouldDisableBackButtonCache()){
  8. $response->headers->add([
  9. "Pragma" => "no-cache",
  10. "Expires" => "Fri, 01 Jan 1990 00:00:00 GMT",
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> handle (line 167)
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
Pipeline->Illuminate\Pipeline\{closure}() in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/Modules/System/Http/Middleware/RedirectRequests.php (line 25)
  1. * @return mixed
  2. */
  3. public function handle($request, Closure $next)
  4. {
  5. if(config('webnew.redirect_url') == false){
  6. return $next($request);
  7. }
  8. $path = '/' . $request->path();
  9. $md5_path = md5($path);
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> handle (line 167)
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php -> Illuminate\Pipeline\{closure} (line 21)
  1. */
  2. public function handle($request, Closure $next)
  3. {
  4. $this->clean($request);
  5. return $next($request);
  6. }
  7. /**
  8. * Clean the request's data.
  9. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php -> handle (line 31)
  1. if ($callback($request)) {
  2. return $next($request);
  3. }
  4. }
  5. return parent::handle($request, $next);
  6. }
  7. /**
  8. * Transform the given value.
  9. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> handle (line 167)
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php -> Illuminate\Pipeline\{closure} (line 21)
  1. */
  2. public function handle($request, Closure $next)
  3. {
  4. $this->clean($request);
  5. return $next($request);
  6. }
  7. /**
  8. * Clean the request's data.
  9. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php -> handle (line 40)
  1. if ($callback($request)) {
  2. return $next($request);
  3. }
  4. }
  5. return parent::handle($request, $next);
  6. }
  7. /**
  8. * Transform the given value.
  9. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> handle (line 167)
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php -> Illuminate\Pipeline\{closure} (line 27)
  1. if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
  2. throw new PostTooLargeException;
  3. }
  4. return $next($request);
  5. }
  6. /**
  7. * Determine the server 'post_max_size' as bytes.
  8. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> handle (line 167)
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php -> Illuminate\Pipeline\{closure} (line 86)
  1. null,
  2. $this->getHeaders($data)
  3. );
  4. }
  5. return $next($request);
  6. }
  7. /**
  8. * Determine if the incoming request has a maintenance mode bypass cookie.
  9. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> handle (line 167)
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php -> Illuminate\Pipeline\{closure} (line 52)
  1. return $response;
  2. }
  3. // Handle the request
  4. $response = $next($request);
  5. if ($request->getMethod() === 'OPTIONS') {
  6. $this->cors->varyHeader($response, 'Access-Control-Request-Method');
  7. }
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> handle (line 167)
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/fideloper/proxy/src/TrustProxies.php -> Illuminate\Pipeline\{closure} (line 57)
  1. public function handle(Request $request, Closure $next)
  2. {
  3. $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4. $this->setTrustedProxyIpAddresses($request);
  5. return $next($request);
  6. }
  7. /**
  8. * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> handle (line 167)
  1. // since the object we're given was already a fully instantiated object.
  2. $parameters = [$passable, $stack];
  3. }
  4. $carry = method_exists($pipe, $this->method)
  5. ? $pipe->{$this->method}(...$parameters)
  6. : $pipe(...$parameters);
  7. return $this->handleCarry($carry);
  8. } catch (Throwable $e) {
  9. return $this->handleException($passable, $e);
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php -> Illuminate\Pipeline\{closure} (line 103)
  1. {
  2. $pipeline = array_reduce(
  3. array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4. );
  5. return $pipeline($this->passable);
  6. }
  7. /**
  8. * Run the pipeline and return the result.
  9. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php -> then (line 142)
  1. $this->bootstrap();
  2. return (new Pipeline($this->app))
  3. ->send($request)
  4. ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5. ->then($this->dispatchToRouter());
  6. }
  7. /**
  8. * Bootstrap the application for HTTP requests.
  9. *
in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php -> sendRequestThroughRouter (line 111)
  1. public function handle($request)
  2. {
  3. try {
  4. $request->enableHttpMethodParameterOverride();
  5. $response = $this->sendRequestThroughRouter($request);
  6. } catch (Throwable $e) {
  7. $this->reportException($e);
  8. $response = $this->renderException($request, $e);
  9. }
Kernel->handle() in /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/public/index.php (line 52)
  1. $app = require_once __DIR__.'/../bootstrap/app.php';
  2. $kernel = $app->make(Kernel::class);
  3. $response = tap($kernel->handle(
  4. $request = Request::capture()
  5. ))->send();
  6. $kernel->terminate($request, $response);

Stack Trace

ErrorException
ErrorException: fwrite(): write of 8685 bytes failed with errno=28 No space left on device at /homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:178 at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError() at fwrite() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:178) at Monolog\Handler\StreamHandler->streamWrite() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:162) at Monolog\Handler\StreamHandler->write() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php:125) at Monolog\Handler\RotatingFileHandler->write() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:48) at Monolog\Handler\AbstractProcessingHandler->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Logger.php:328) at Monolog\Logger->addRecord() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/monolog/monolog/src/Monolog/Logger.php:566) at Monolog\Logger->error() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php:183) at Illuminate\Log\Logger->writeLog() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Log/Logger.php:94) at Illuminate\Log\Logger->error() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Log/LogManager.php:590) at Illuminate\Log\LogManager->error() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:252) at Illuminate\Foundation\Exceptions\Handler->report() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/app/Exceptions/Handler.php:65) at App\Exceptions\Handler->report() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:49) at Illuminate\Routing\Pipeline->handleException() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:130) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/livewire/livewire/src/DisableBrowserCache.php:19) at Livewire\DisableBrowserCache->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/Modules/System/Http/Middleware/RedirectRequests.php:25) at Modules\System\Http\Middleware\RedirectRequests->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21) at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31) at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21) at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40) at Illuminate\Foundation\Http\Middleware\TrimStrings->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27) at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86) at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/fruitcake/laravel-cors/src/HandleCors.php:52) at Fruitcake\Cors\HandleCors->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/fideloper/proxy/src/TrustProxies.php:57) at Fideloper\Proxy\TrustProxies->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103) at Illuminate\Pipeline\Pipeline->then() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142) at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111) at Illuminate\Foundation\Http\Kernel->handle() (/homesun/phuongnam/domains/phuongnam.vanhoavaphattrien.vn/public_html/public/index.php:52)

Từ khóa » đền đức Hoàng Yên Thành