/home/ruposhi2/ngo2.ruposhibd.xyz/config
// If an exception occurs when attempting to run a query, we'll format the error // message to include the bindings with SQL, which will make this exception a // lot more helpful to the developer instead of just the database's errors. catch (Exception $e) { throw new QueryException( $query, $this->prepareBindings($bindings), $e ); } return $result; // 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 { include $__path; } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } } // 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. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); array_pop($this->lastCompiled); return $results; } * * @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 sections get 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 ArrayObject || $response instanceof JsonSerializable || 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(); } * @param mixed $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { return static::toResponse($request, $response); } /** * Static version of prepareResponse. * return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(function ($request) use ($route) { return $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); } }; } { $this->router->substituteBindings($route = $request->route()); $this->router->substituteImplicitBindings($route); 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() && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } else { 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. * ->through($middleware) ->then(function ($request) use ($route) { return $this->prepareResponse( $request, $route->run() ); }); } /** * Gather the middleware for the given route with resolved class names. * }); $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); } }; } */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * // 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. * // 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); } throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']); } return $next($request); } /** * Determine if the request has a URI that should be accessible in maintenance mode. * // 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) { // Check if we're dealing with CORS and if we should handle it if (! $this->shouldRun($request)) { return $next($request); } // For Preflight, return the Preflight response if ($this->cors->isPreflightRequest($request)) { return $this->cors->handlePreflightRequest($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); public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request to the value of trustedproxy.proxies * // 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. * public function handle($request) { try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); }*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
// If an exception occurs when attempting to run a query, we'll format the error // message to include the bindings with SQL, which will make this exception a // lot more helpful to the developer instead of just the database's errors. catch (Exception $e) { throw new QueryException( $query, $this->prepareBindings($bindings), $e ); } return $result; // Here we will run this query. If an exception occurs we'll determine if it was // caused by a connection that has been lost. If that is the cause, we'll try // to re-establish connection and re-run the query with a fresh connection. try { $result = $this->runQueryCallback($query, $bindings, $callback); } catch (QueryException $e) { $result = $this->handleQueryException( $e, $query, $bindings, $callback ); } $this->bindValues($statement, $this->prepareBindings($bindings)); $statement->execute(); return $statement->fetchAll(); }); } /** * Run a select statement against the database and returns a generator. * * @return array */ protected function runSelect() { return $this->connection->select( $this->toSql(), $this->getBindings(), ! $this->useWritePdo ); } /** * Paginate the given query into a simple paginator. * @return \Illuminate\Support\Collection */ public function get($columns = ['*']) { return collect($this->onceWithColumns(Arr::wrap($columns), function () { return $this->processor->processSelect($this, $this->runSelect()); })); } /** * Run the query as a "select" statement against the connection. if (is_null($original)) { $this->columns = $columns; } $result = $callback(); $this->columns = $original; return $result; } */ public function get($columns = ['*']) { return collect($this->onceWithColumns(Arr::wrap($columns), function () { return $this->processor->processSelect($this, $this->runSelect()); })); } /** * Run the query as a "select" statement against the connection. * <div class="col-lg-12 col-12"> <div class="owl-carousel package-slider"> <?php
$firstcat=DB::table('categories')->first();
$firstcat_1st_package=DB::table('posts')->where('cat_id',$firstcat->id)->where('firstpackage',1)->orderBy('id','DESC')->limit(1)->get();
$firstcat_2nd_package=DB::table('posts')->where('cat_id',$firstcat->id)->where('seconpackage',1)->orderBy('id','DESC')->limit(1)->get();
$firstcat_3rd_package=DB::table('posts')->where('cat_id',$firstcat->id)->where('thirdpackage',1)->orderBy('id','DESC')->limit(1)->get();
?>
<?php $__currentLoopData = $firstcat_1st_package; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
// 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 { include $__path; } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } // 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. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); array_pop($this->lastCompiled); return $results; } * * @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 sections get 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 ArrayObject || $response instanceof JsonSerializable || 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(); } * @param mixed $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { return static::toResponse($request, $response); } /** * Static version of prepareResponse. * return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(function ($request) use ($route) { return $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); } }; } { $this->router->substituteBindings($route = $request->route()); $this->router->substituteImplicitBindings($route); 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() && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } else { 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. * ->through($middleware) ->then(function ($request) use ($route) { return $this->prepareResponse( $request, $route->run() ); }); } /** * Gather the middleware for the given route with resolved class names. * }); $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); } }; } */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * // 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. * // 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); } throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']); } return $next($request); } /** * Determine if the request has a URI that should be accessible in maintenance mode. * // 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) { // Check if we're dealing with CORS and if we should handle it if (! $this->shouldRun($request)) { return $next($request); } // For Preflight, return the Preflight response if ($this->cors->isPreflightRequest($request)) { return $this->cors->handlePreflightRequest($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); public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request to the value of trustedproxy.proxies * // 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. * public function handle($request) { try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); }*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
// For select statements, we'll simply execute the query and return an array // of the database result set. Each element in the array will be a single // row from the database table, and will either be an array or objects. $statement = $this->prepared( $this->getPdoForSelect($useReadPdo)->prepare($query) ); $this->bindValues($statement, $this->prepareBindings($bindings)); $statement->execute(); // For select statements, we'll simply execute the query and return an array // of the database result set. Each element in the array will be a single // row from the database table, and will either be an array or objects. $statement = $this->prepared( $this->getPdoForSelect($useReadPdo)->prepare($query) ); $this->bindValues($statement, $this->prepareBindings($bindings)); $statement->execute(); { // To execute the statement, we'll simply call the callback, which will actually // run the SQL against the PDO connection. Then we can calculate the time it // took to execute and log the query SQL, bindings and time in our memory. try { $result = $callback($query, $bindings); } // If an exception occurs when attempting to run a query, we'll format the error // message to include the bindings with SQL, which will make this exception a // lot more helpful to the developer instead of just the database's errors. // Here we will run this query. If an exception occurs we'll determine if it was // caused by a connection that has been lost. If that is the cause, we'll try // to re-establish connection and re-run the query with a fresh connection. try { $result = $this->runQueryCallback($query, $bindings, $callback); } catch (QueryException $e) { $result = $this->handleQueryException( $e, $query, $bindings, $callback ); } $this->bindValues($statement, $this->prepareBindings($bindings)); $statement->execute(); return $statement->fetchAll(); }); } /** * Run a select statement against the database and returns a generator. * * @return array */ protected function runSelect() { return $this->connection->select( $this->toSql(), $this->getBindings(), ! $this->useWritePdo ); } /** * Paginate the given query into a simple paginator. * @return \Illuminate\Support\Collection */ public function get($columns = ['*']) { return collect($this->onceWithColumns(Arr::wrap($columns), function () { return $this->processor->processSelect($this, $this->runSelect()); })); } /** * Run the query as a "select" statement against the connection. if (is_null($original)) { $this->columns = $columns; } $result = $callback(); $this->columns = $original; return $result; } */ public function get($columns = ['*']) { return collect($this->onceWithColumns(Arr::wrap($columns), function () { return $this->processor->processSelect($this, $this->runSelect()); })); } /** * Run the query as a "select" statement against the connection. * <div class="col-lg-12 col-12"> <div class="owl-carousel package-slider"> <?php
$firstcat=DB::table('categories')->first();
$firstcat_1st_package=DB::table('posts')->where('cat_id',$firstcat->id)->where('firstpackage',1)->orderBy('id','DESC')->limit(1)->get();
$firstcat_2nd_package=DB::table('posts')->where('cat_id',$firstcat->id)->where('seconpackage',1)->orderBy('id','DESC')->limit(1)->get();
$firstcat_3rd_package=DB::table('posts')->where('cat_id',$firstcat->id)->where('thirdpackage',1)->orderBy('id','DESC')->limit(1)->get();
?>
<?php $__currentLoopData = $firstcat_1st_package; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
// 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 { include $__path; } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } return ltrim(ob_get_clean()); } // 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. $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); array_pop($this->lastCompiled); return $results; } * * @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 sections get 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 ArrayObject || $response instanceof JsonSerializable || 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(); } * @param mixed $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { return static::toResponse($request, $response); } /** * Static version of prepareResponse. * return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(function ($request) use ($route) { return $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); } }; } { $this->router->substituteBindings($route = $request->route()); $this->router->substituteImplicitBindings($route); 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() && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } else { 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. * ->through($middleware) ->then(function ($request) use ($route) { return $this->prepareResponse( $request, $route->run() ); }); } /** * Gather the middleware for the given route with resolved class names. * }); $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); } }; } */ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * // 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. * // 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); } throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']); } return $next($request); } /** * Determine if the request has a URI that should be accessible in maintenance mode. * // 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) { // Check if we're dealing with CORS and if we should handle it if (! $this->shouldRun($request)) { return $next($request); } // For Preflight, return the Preflight response if ($this->cors->isPreflightRequest($request)) { return $this->cors->handlePreflightRequest($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); public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request to the value of trustedproxy.proxies * // 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. * public function handle($request) { try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); }*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
|
[3/3]
ViewException
|
|---|
Illuminate\View\ViewException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'firstpackage' in 'WHERE' (SQL: select * from `posts` where `cat_id` = 20 and `firstpackage` = 1 order by `id` desc limit 1) (View: /home/ruposhi2/ngo2.ruposhibd.xyz/resources/views/frontend/index.blade.php)
at /home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Connection.php:671
at Illuminate\View\Engines\CompilerEngine->handleViewException(object(QueryException), 0)
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:43)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/ruposhi2/ngo2.ruposhibd.xyz/storage/framework/views/5fa2ec0b4dcac4326c45f5e15dfe0418f3fc3382.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag)))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:57)
at Illuminate\View\Engines\CompilerEngine->get('/home/ruposhi2/ngo2.ruposhibd.xyz/resources/views/frontend/index.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag)))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/View.php:139)
at Illuminate\View\View->getContents()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/View.php:122)
at Illuminate\View\View->renderContents()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/View.php:91)
at Illuminate\View\View->render()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Http/Response.php:62)
at Illuminate\Http\Response->setContent(object(View))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Http/Response.php:34)
at Illuminate\Http\Response->__construct(object(View), 200, array('Content-Type' => 'text/html'))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:759)
at Illuminate\Routing\Router::toResponse(object(Request), object(View))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:731)
at Illuminate\Routing\Router->prepareResponse(object(Request), object(View))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:685)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41)
at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:116)
at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:62)
at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
at Illuminate\Routing\Router->dispatchToRoute(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
at Illuminate\Routing\Router->dispatch(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/fruitcake/laravel-cors/src/HandleCors.php:37)
at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/fideloper/proxy/src/TrustProxies.php:57)
at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/index.php:55)
|
|
[2/3]
QueryException
|
|---|
Illuminate\Database\QueryException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'firstpackage' in 'WHERE' (SQL: select * from `posts` where `cat_id` = 20 and `firstpackage` = 1 order by `id` desc limit 1)
at /home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Connection.php:671
at Illuminate\Database\Connection->runQueryCallback('select * from `posts` where `cat_id` = ? and `firstpackage` = ? order by `id` desc limit 1', array(20, 1), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Connection.php:631)
at Illuminate\Database\Connection->run('select * from `posts` where `cat_id` = ? and `firstpackage` = ? order by `id` desc limit 1', array(20, 1), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Connection.php:339)
at Illuminate\Database\Connection->select('select * from `posts` where `cat_id` = ? and `firstpackage` = ? order by `id` desc limit 1', array(20, 1), true)
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2270)
at Illuminate\Database\Query\Builder->runSelect()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2258)
at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2753)
at Illuminate\Database\Query\Builder->onceWithColumns(array('*'), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2259)
at Illuminate\Database\Query\Builder->get()
(/home/ruposhi2/ngo2.ruposhibd.xyz/storage/framework/views/5fa2ec0b4dcac4326c45f5e15dfe0418f3fc3382.php:221)
at include('/home/ruposhi2/ngo2.ruposhibd.xyz/storage/framework/views/5fa2ec0b4dcac4326c45f5e15dfe0418f3fc3382.php')
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:41)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/ruposhi2/ngo2.ruposhibd.xyz/storage/framework/views/5fa2ec0b4dcac4326c45f5e15dfe0418f3fc3382.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag)))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:57)
at Illuminate\View\Engines\CompilerEngine->get('/home/ruposhi2/ngo2.ruposhibd.xyz/resources/views/frontend/index.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag)))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/View.php:139)
at Illuminate\View\View->getContents()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/View.php:122)
at Illuminate\View\View->renderContents()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/View.php:91)
at Illuminate\View\View->render()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Http/Response.php:62)
at Illuminate\Http\Response->setContent(object(View))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Http/Response.php:34)
at Illuminate\Http\Response->__construct(object(View), 200, array('Content-Type' => 'text/html'))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:759)
at Illuminate\Routing\Router::toResponse(object(Request), object(View))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:731)
at Illuminate\Routing\Router->prepareResponse(object(Request), object(View))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:685)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41)
at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:116)
at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:62)
at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
at Illuminate\Routing\Router->dispatchToRoute(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
at Illuminate\Routing\Router->dispatch(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/fruitcake/laravel-cors/src/HandleCors.php:37)
at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/fideloper/proxy/src/TrustProxies.php:57)
at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/index.php:55)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'firstpackage' in 'WHERE'
at /home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Connection.php:331
at PDO->prepare('select * from `posts` where `cat_id` = ? and `firstpackage` = ? order by `id` desc limit 1')
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Connection.php:331)
at Illuminate\Database\Connection->Illuminate\Database\{closure}('select * from `posts` where `cat_id` = ? and `firstpackage` = ? order by `id` desc limit 1', array(20, 1))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664)
at Illuminate\Database\Connection->runQueryCallback('select * from `posts` where `cat_id` = ? and `firstpackage` = ? order by `id` desc limit 1', array(20, 1), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Connection.php:631)
at Illuminate\Database\Connection->run('select * from `posts` where `cat_id` = ? and `firstpackage` = ? order by `id` desc limit 1', array(20, 1), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Connection.php:339)
at Illuminate\Database\Connection->select('select * from `posts` where `cat_id` = ? and `firstpackage` = ? order by `id` desc limit 1', array(20, 1), true)
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2270)
at Illuminate\Database\Query\Builder->runSelect()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2258)
at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2753)
at Illuminate\Database\Query\Builder->onceWithColumns(array('*'), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2259)
at Illuminate\Database\Query\Builder->get()
(/home/ruposhi2/ngo2.ruposhibd.xyz/storage/framework/views/5fa2ec0b4dcac4326c45f5e15dfe0418f3fc3382.php:221)
at include('/home/ruposhi2/ngo2.ruposhibd.xyz/storage/framework/views/5fa2ec0b4dcac4326c45f5e15dfe0418f3fc3382.php')
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:41)
at Illuminate\View\Engines\PhpEngine->evaluatePath('/home/ruposhi2/ngo2.ruposhibd.xyz/storage/framework/views/5fa2ec0b4dcac4326c45f5e15dfe0418f3fc3382.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag)))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:57)
at Illuminate\View\Engines\CompilerEngine->get('/home/ruposhi2/ngo2.ruposhibd.xyz/resources/views/frontend/index.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'errors' => object(ViewErrorBag)))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/View.php:139)
at Illuminate\View\View->getContents()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/View.php:122)
at Illuminate\View\View->renderContents()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/View.php:91)
at Illuminate\View\View->render()
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Http/Response.php:62)
at Illuminate\Http\Response->setContent(object(View))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Http/Response.php:34)
at Illuminate\Http\Response->__construct(object(View), 200, array('Content-Type' => 'text/html'))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:759)
at Illuminate\Routing\Router::toResponse(object(Request), object(View))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:731)
at Illuminate\Routing\Router->prepareResponse(object(Request), object(View))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:685)
at Illuminate\Routing\Router->Illuminate\Routing\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41)
at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:116)
at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:62)
at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
at Illuminate\Routing\Router->dispatchToRoute(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
at Illuminate\Routing\Router->dispatch(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/fruitcake/laravel-cors/src/HandleCors.php:37)
at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/fideloper/proxy/src/TrustProxies.php:57)
at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
at Illuminate\Pipeline\Pipeline->then(object(Closure))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
at Illuminate\Foundation\Http\Kernel->handle(object(Request))
(/home/ruposhi2/ngo2.ruposhibd.xyz/index.php:55)
|