Symfony Exception

PDOException Exception QueryException

HTTP 500 Internal Server Error

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'kompetensi.app_lembaga' doesn't exist (SQL: select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = v2 and `a`.`soft_delete` = 0 limit 1)

Exceptions 3

Illuminate\Database\ QueryException

  1.         // If an exception occurs when attempting to run a query, we'll format the error
  2.         // message to include the bindings with SQL, which will make this exception a
  3.         // lot more helpful to the developer instead of just the database's errors.
  4.         catch (Exception $e) {
  5.             throw new QueryException(
  6.                 $query$this->prepareBindings($bindings), $e
  7.             );
  8.         }
  9.         return $result;
  1.         // Here we will run this query. If an exception occurs we'll determine if it was
  2.         // caused by a connection that has been lost. If that is the cause, we'll try
  3.         // to re-establish connection and re-run the query with a fresh connection.
  4.         try {
  5.             $result $this->runQueryCallback($query$bindings$callback);
  6.         } catch (QueryException $e) {
  7.             $result $this->handleQueryException(
  8.                 $e$query$bindings$callback
  9.             );
  10.         }
  1.             $this->bindValues($statement$this->prepareBindings($bindings));
  2.             $statement->execute();
  3.             return $statement->fetchAll();
  4.         });
  5.     }
  6.     /**
  7.      * Run a select statement against the database and returns a generator.
  8.      *
  1.      * @return array
  2.      */
  3.     protected function runSelect()
  4.     {
  5.         return $this->connection->select(
  6.             $this->toSql(), $this->getBindings(), ! $this->useWritePdo
  7.         );
  8.     }
  9.     /**
  10.      * Paginate the given query into a simple paginator.
  1.      * @return \Illuminate\Support\Collection
  2.      */
  3.     public function get($columns = ['*'])
  4.     {
  5.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
  6.             return $this->processor->processSelect($this$this->runSelect());
  7.         }));
  8.     }
  9.     /**
  10.      * Run the query as a "select" statement against the connection.
  1.         if (is_null($original)) {
  2.             $this->columns $columns;
  3.         }
  4.         $result $callback();
  5.         $this->columns $original;
  6.         return $result;
  7.     }
  1.      */
  2.     public function get($columns = ['*'])
  3.     {
  4.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
  5.             return $this->processor->processSelect($this$this->runSelect());
  6.         }));
  7.     }
  8.     /**
  9.      * Run the query as a "select" statement against the connection.
  10.      *
  1.      * @param  array|string  $columns
  2.      * @return \Illuminate\Database\Eloquent\Model|object|static|null
  3.      */
  4.     public function first($columns = ['*'])
  5.     {
  6.         return $this->take(1)->get($columns)->first();
  7.     }
  8.     /**
  9.      * Apply the callback's query changes if the given "value" is true.
  10.      *
  1.     {
  2.         return DB::table('app_lembaga as a')
  3.             ->select('a.id_lembaga','a.nm_lembaga','a.alamat_lembaga','a.url','a.no_telp','a.logo','a.id_jenis_lembaga')
  4.             ->where('a.url',$alias)
  5.             ->where('a.soft_delete',0)
  6.             ->first();
  7.     }
  8.     
  9.     public function getArtikel($lembaga)
  10.     {
  11.         return DB::table('sys_artikel as a')
  1.         if(php_sapi_name() === 'cli') return;
  2.         $this->model $model;
  3.         $this->app = new App;
  4.         $this->help = new Helper;
  5.         $params = \Route::current()->parameters();
  6.         $this->lembaga $this->model->getInfoLembaga($params['account']);
  7.         session()->put('info_lembaga',$this->lembaga);
  8.     }
  9.     public function getIndex($account)
  10.     {
PortalController->__construct(object(PortalModel))
  1.             throw $e;
  2.         }
  3.         array_pop($this->buildStack);
  4.         return $reflector->newInstanceArgs($instances);
  5.     }
  6.     /**
  7.      * Resolve all of the dependencies from the ReflectionParameters.
  8.      *
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      *  {@inheritdoc}
  10.      */
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.     public function getController()
  2.     {
  3.         if (! $this->controller) {
  4.             $class $this->parseControllerCallback()[0];
  5.             $this->controller $this->container->make(ltrim($class'\\'));
  6.         }
  7.         return $this->controller;
  8.     }
  1.         if (! $this->isControllerAction()) {
  2.             return [];
  3.         }
  4.         return $this->controllerDispatcher()->getMiddleware(
  5.             $this->getController(), $this->getControllerMethod()
  6.         );
  7.     }
  8.     /**
  9.      * Specify middleware that should be removed from the given route.
  1.         }
  2.         $this->computedMiddleware = [];
  3.         return $this->computedMiddleware Router::uniqueMiddleware(array_merge(
  4.             $this->middleware(), $this->controllerMiddleware()
  5.         ));
  6.     }
  7.     /**
  8.      * Get or set the middlewares attached to the route.
  1.     {
  2.         $excluded collect($route->excludedMiddleware())->map(function ($name) {
  3.             return (array) MiddlewareNameResolver::resolve($name$this->middleware$this->middlewareGroups);
  4.         })->flatten()->values()->all();
  5.         $middleware collect($route->gatherMiddleware())->map(function ($name) {
  6.             return (array) MiddlewareNameResolver::resolve($name$this->middleware$this->middlewareGroups);
  7.         })->flatten()->reject(function ($name) use ($excluded) {
  8.             return in_array($name$excludedtrue);
  9.         })->values();
  1.     protected function runRouteWithinStack(Route $routeRequest $request)
  2.     {
  3.         $shouldSkipMiddleware $this->container->bound('middleware.disable') &&
  4.                                 $this->container->make('middleware.disable') === true;
  5.         $middleware $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  6.         return (new Pipeline($this->container))
  7.                         ->send($request)
  8.                         ->through($middleware)
  9.                         ->then(function ($request) use ($route) {
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  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);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  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);
  1.         if ($max && $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.      *
  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);
  1.             }
  2.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  8.      *
  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);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             return $this->cors->handlePreflightRequest($request);
  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);
  1.     public function handle(Request $requestClosure $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.      *
  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);
  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.      *
  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.      *
  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(object(Request)) in /var/www/html/v2/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Doctrine\DBAL\Driver\PDO\ Exception

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'kompetensi.app_lembaga' doesn't exist

  1.  */
  2. final class Exception extends PDOException
  3. {
  4.     public static function new(\PDOException $exception): self
  5.     {
  6.         return new self($exception);
  7.     }
  8. }
  1.             $statement parent::prepare($sql$driverOptions);
  2.             assert($statement instanceof PDOStatement);
  3.             return $statement;
  4.         } catch (PDOException $exception) {
  5.             throw Exception::new($exception);
  6.         }
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  1.             // For select statements, we'll simply execute the query and return an array
  2.             // of the database result set. Each element in the array will be a single
  3.             // row from the database table, and will either be an array or objects.
  4.             $statement $this->prepared(
  5.                 $this->getPdoForSelect($useReadPdo)->prepare($query)
  6.             );
  7.             $this->bindValues($statement$this->prepareBindings($bindings));
  8.             $statement->execute();
  1.     {
  2.         // To execute the statement, we'll simply call the callback, which will actually
  3.         // run the SQL against the PDO connection. Then we can calculate the time it
  4.         // took to execute and log the query SQL, bindings and time in our memory.
  5.         try {
  6.             $result $callback($query$bindings);
  7.         }
  8.         // If an exception occurs when attempting to run a query, we'll format the error
  9.         // message to include the bindings with SQL, which will make this exception a
  10.         // lot more helpful to the developer instead of just the database's errors.
  1.         // Here we will run this query. If an exception occurs we'll determine if it was
  2.         // caused by a connection that has been lost. If that is the cause, we'll try
  3.         // to re-establish connection and re-run the query with a fresh connection.
  4.         try {
  5.             $result $this->runQueryCallback($query$bindings$callback);
  6.         } catch (QueryException $e) {
  7.             $result $this->handleQueryException(
  8.                 $e$query$bindings$callback
  9.             );
  10.         }
  1.             $this->bindValues($statement$this->prepareBindings($bindings));
  2.             $statement->execute();
  3.             return $statement->fetchAll();
  4.         });
  5.     }
  6.     /**
  7.      * Run a select statement against the database and returns a generator.
  8.      *
  1.      * @return array
  2.      */
  3.     protected function runSelect()
  4.     {
  5.         return $this->connection->select(
  6.             $this->toSql(), $this->getBindings(), ! $this->useWritePdo
  7.         );
  8.     }
  9.     /**
  10.      * Paginate the given query into a simple paginator.
  1.      * @return \Illuminate\Support\Collection
  2.      */
  3.     public function get($columns = ['*'])
  4.     {
  5.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
  6.             return $this->processor->processSelect($this$this->runSelect());
  7.         }));
  8.     }
  9.     /**
  10.      * Run the query as a "select" statement against the connection.
  1.         if (is_null($original)) {
  2.             $this->columns $columns;
  3.         }
  4.         $result $callback();
  5.         $this->columns $original;
  6.         return $result;
  7.     }
  1.      */
  2.     public function get($columns = ['*'])
  3.     {
  4.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
  5.             return $this->processor->processSelect($this$this->runSelect());
  6.         }));
  7.     }
  8.     /**
  9.      * Run the query as a "select" statement against the connection.
  10.      *
  1.      * @param  array|string  $columns
  2.      * @return \Illuminate\Database\Eloquent\Model|object|static|null
  3.      */
  4.     public function first($columns = ['*'])
  5.     {
  6.         return $this->take(1)->get($columns)->first();
  7.     }
  8.     /**
  9.      * Apply the callback's query changes if the given "value" is true.
  10.      *
  1.     {
  2.         return DB::table('app_lembaga as a')
  3.             ->select('a.id_lembaga','a.nm_lembaga','a.alamat_lembaga','a.url','a.no_telp','a.logo','a.id_jenis_lembaga')
  4.             ->where('a.url',$alias)
  5.             ->where('a.soft_delete',0)
  6.             ->first();
  7.     }
  8.     
  9.     public function getArtikel($lembaga)
  10.     {
  11.         return DB::table('sys_artikel as a')
  1.         if(php_sapi_name() === 'cli') return;
  2.         $this->model $model;
  3.         $this->app = new App;
  4.         $this->help = new Helper;
  5.         $params = \Route::current()->parameters();
  6.         $this->lembaga $this->model->getInfoLembaga($params['account']);
  7.         session()->put('info_lembaga',$this->lembaga);
  8.     }
  9.     public function getIndex($account)
  10.     {
PortalController->__construct(object(PortalModel))
  1.             throw $e;
  2.         }
  3.         array_pop($this->buildStack);
  4.         return $reflector->newInstanceArgs($instances);
  5.     }
  6.     /**
  7.      * Resolve all of the dependencies from the ReflectionParameters.
  8.      *
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      *  {@inheritdoc}
  10.      */
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.     public function getController()
  2.     {
  3.         if (! $this->controller) {
  4.             $class $this->parseControllerCallback()[0];
  5.             $this->controller $this->container->make(ltrim($class'\\'));
  6.         }
  7.         return $this->controller;
  8.     }
  1.         if (! $this->isControllerAction()) {
  2.             return [];
  3.         }
  4.         return $this->controllerDispatcher()->getMiddleware(
  5.             $this->getController(), $this->getControllerMethod()
  6.         );
  7.     }
  8.     /**
  9.      * Specify middleware that should be removed from the given route.
  1.         }
  2.         $this->computedMiddleware = [];
  3.         return $this->computedMiddleware Router::uniqueMiddleware(array_merge(
  4.             $this->middleware(), $this->controllerMiddleware()
  5.         ));
  6.     }
  7.     /**
  8.      * Get or set the middlewares attached to the route.
  1.     {
  2.         $excluded collect($route->excludedMiddleware())->map(function ($name) {
  3.             return (array) MiddlewareNameResolver::resolve($name$this->middleware$this->middlewareGroups);
  4.         })->flatten()->values()->all();
  5.         $middleware collect($route->gatherMiddleware())->map(function ($name) {
  6.             return (array) MiddlewareNameResolver::resolve($name$this->middleware$this->middlewareGroups);
  7.         })->flatten()->reject(function ($name) use ($excluded) {
  8.             return in_array($name$excludedtrue);
  9.         })->values();
  1.     protected function runRouteWithinStack(Route $routeRequest $request)
  2.     {
  3.         $shouldSkipMiddleware $this->container->bound('middleware.disable') &&
  4.                                 $this->container->make('middleware.disable') === true;
  5.         $middleware $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  6.         return (new Pipeline($this->container))
  7.                         ->send($request)
  8.                         ->through($middleware)
  9.                         ->then(function ($request) use ($route) {
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  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);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  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);
  1.         if ($max && $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.      *
  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);
  1.             }
  2.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  8.      *
  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);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             return $this->cors->handlePreflightRequest($request);
  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);
  1.     public function handle(Request $requestClosure $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.      *
  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);
  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.      *
  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.      *
  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(object(Request)) in /var/www/html/v2/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

PDOException

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'kompetensi.app_lembaga' doesn't exist

  1.      * @return PDOStatement
  2.      */
  3.     public function prepare($sql$driverOptions = [])
  4.     {
  5.         try {
  6.             $statement parent::prepare($sql$driverOptions);
  7.             assert($statement instanceof PDOStatement);
  8.             return $statement;
  9.         } catch (PDOException $exception) {
  10.             throw Exception::new($exception);
  1.      * @return PDOStatement
  2.      */
  3.     public function prepare($sql$driverOptions = [])
  4.     {
  5.         try {
  6.             $statement parent::prepare($sql$driverOptions);
  7.             assert($statement instanceof PDOStatement);
  8.             return $statement;
  9.         } catch (PDOException $exception) {
  10.             throw Exception::new($exception);
  1.             // For select statements, we'll simply execute the query and return an array
  2.             // of the database result set. Each element in the array will be a single
  3.             // row from the database table, and will either be an array or objects.
  4.             $statement $this->prepared(
  5.                 $this->getPdoForSelect($useReadPdo)->prepare($query)
  6.             );
  7.             $this->bindValues($statement$this->prepareBindings($bindings));
  8.             $statement->execute();
  1.     {
  2.         // To execute the statement, we'll simply call the callback, which will actually
  3.         // run the SQL against the PDO connection. Then we can calculate the time it
  4.         // took to execute and log the query SQL, bindings and time in our memory.
  5.         try {
  6.             $result $callback($query$bindings);
  7.         }
  8.         // If an exception occurs when attempting to run a query, we'll format the error
  9.         // message to include the bindings with SQL, which will make this exception a
  10.         // lot more helpful to the developer instead of just the database's errors.
  1.         // Here we will run this query. If an exception occurs we'll determine if it was
  2.         // caused by a connection that has been lost. If that is the cause, we'll try
  3.         // to re-establish connection and re-run the query with a fresh connection.
  4.         try {
  5.             $result $this->runQueryCallback($query$bindings$callback);
  6.         } catch (QueryException $e) {
  7.             $result $this->handleQueryException(
  8.                 $e$query$bindings$callback
  9.             );
  10.         }
  1.             $this->bindValues($statement$this->prepareBindings($bindings));
  2.             $statement->execute();
  3.             return $statement->fetchAll();
  4.         });
  5.     }
  6.     /**
  7.      * Run a select statement against the database and returns a generator.
  8.      *
  1.      * @return array
  2.      */
  3.     protected function runSelect()
  4.     {
  5.         return $this->connection->select(
  6.             $this->toSql(), $this->getBindings(), ! $this->useWritePdo
  7.         );
  8.     }
  9.     /**
  10.      * Paginate the given query into a simple paginator.
  1.      * @return \Illuminate\Support\Collection
  2.      */
  3.     public function get($columns = ['*'])
  4.     {
  5.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
  6.             return $this->processor->processSelect($this$this->runSelect());
  7.         }));
  8.     }
  9.     /**
  10.      * Run the query as a "select" statement against the connection.
  1.         if (is_null($original)) {
  2.             $this->columns $columns;
  3.         }
  4.         $result $callback();
  5.         $this->columns $original;
  6.         return $result;
  7.     }
  1.      */
  2.     public function get($columns = ['*'])
  3.     {
  4.         return collect($this->onceWithColumns(Arr::wrap($columns), function () {
  5.             return $this->processor->processSelect($this$this->runSelect());
  6.         }));
  7.     }
  8.     /**
  9.      * Run the query as a "select" statement against the connection.
  10.      *
  1.      * @param  array|string  $columns
  2.      * @return \Illuminate\Database\Eloquent\Model|object|static|null
  3.      */
  4.     public function first($columns = ['*'])
  5.     {
  6.         return $this->take(1)->get($columns)->first();
  7.     }
  8.     /**
  9.      * Apply the callback's query changes if the given "value" is true.
  10.      *
  1.     {
  2.         return DB::table('app_lembaga as a')
  3.             ->select('a.id_lembaga','a.nm_lembaga','a.alamat_lembaga','a.url','a.no_telp','a.logo','a.id_jenis_lembaga')
  4.             ->where('a.url',$alias)
  5.             ->where('a.soft_delete',0)
  6.             ->first();
  7.     }
  8.     
  9.     public function getArtikel($lembaga)
  10.     {
  11.         return DB::table('sys_artikel as a')
  1.         if(php_sapi_name() === 'cli') return;
  2.         $this->model $model;
  3.         $this->app = new App;
  4.         $this->help = new Helper;
  5.         $params = \Route::current()->parameters();
  6.         $this->lembaga $this->model->getInfoLembaga($params['account']);
  7.         session()->put('info_lembaga',$this->lembaga);
  8.     }
  9.     public function getIndex($account)
  10.     {
PortalController->__construct(object(PortalModel))
  1.             throw $e;
  2.         }
  3.         array_pop($this->buildStack);
  4.         return $reflector->newInstanceArgs($instances);
  5.     }
  6.     /**
  7.      * Resolve all of the dependencies from the ReflectionParameters.
  8.      *
  1.         // We're ready to instantiate an instance of the concrete type registered for
  2.         // the binding. This will instantiate the types, as well as resolve any of
  3.         // its "nested" dependencies recursively until all have gotten resolved.
  4.         if ($this->isBuildable($concrete$abstract)) {
  5.             $object $this->build($concrete);
  6.         } else {
  7.             $object $this->make($concrete);
  8.         }
  9.         // If we defined any extenders for this type, we'll need to spin through them
  1.      */
  2.     protected function resolve($abstract$parameters = [], $raiseEvents true)
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::resolve($abstract$parameters$raiseEvents);
  6.     }
  7.     /**
  8.      * Load the deferred provider if the given type is a deferred service and the instance has not been loaded.
  9.      *
  1.      *
  2.      * @throws \Illuminate\Contracts\Container\BindingResolutionException
  3.      */
  4.     public function make($abstract, array $parameters = [])
  5.     {
  6.         return $this->resolve($abstract$parameters);
  7.     }
  8.     /**
  9.      *  {@inheritdoc}
  10.      */
  1.      */
  2.     public function make($abstract, array $parameters = [])
  3.     {
  4.         $this->loadDeferredProviderIfNeeded($abstract $this->getAlias($abstract));
  5.         return parent::make($abstract$parameters);
  6.     }
  7.     /**
  8.      * Resolve the given type from the container.
  9.      *
  1.     public function getController()
  2.     {
  3.         if (! $this->controller) {
  4.             $class $this->parseControllerCallback()[0];
  5.             $this->controller $this->container->make(ltrim($class'\\'));
  6.         }
  7.         return $this->controller;
  8.     }
  1.         if (! $this->isControllerAction()) {
  2.             return [];
  3.         }
  4.         return $this->controllerDispatcher()->getMiddleware(
  5.             $this->getController(), $this->getControllerMethod()
  6.         );
  7.     }
  8.     /**
  9.      * Specify middleware that should be removed from the given route.
  1.         }
  2.         $this->computedMiddleware = [];
  3.         return $this->computedMiddleware Router::uniqueMiddleware(array_merge(
  4.             $this->middleware(), $this->controllerMiddleware()
  5.         ));
  6.     }
  7.     /**
  8.      * Get or set the middlewares attached to the route.
  1.     {
  2.         $excluded collect($route->excludedMiddleware())->map(function ($name) {
  3.             return (array) MiddlewareNameResolver::resolve($name$this->middleware$this->middlewareGroups);
  4.         })->flatten()->values()->all();
  5.         $middleware collect($route->gatherMiddleware())->map(function ($name) {
  6.             return (array) MiddlewareNameResolver::resolve($name$this->middleware$this->middlewareGroups);
  7.         })->flatten()->reject(function ($name) use ($excluded) {
  8.             return in_array($name$excludedtrue);
  9.         })->values();
  1.     protected function runRouteWithinStack(Route $routeRequest $request)
  2.     {
  3.         $shouldSkipMiddleware $this->container->bound('middleware.disable') &&
  4.                                 $this->container->make('middleware.disable') === true;
  5.         $middleware $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  6.         return (new Pipeline($this->container))
  7.                         ->send($request)
  8.                         ->through($middleware)
  9.                         ->then(function ($request) use ($route) {
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  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);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  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);
  1.         if ($max && $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.      *
  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);
  1.             }
  2.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  8.      *
  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);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             return $this->cors->handlePreflightRequest($request);
  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);
  1.     public function handle(Request $requestClosure $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.      *
  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);
  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.      *
  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.      *
  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(object(Request)) in /var/www/html/v2/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Traces 3

[3/3] QueryException

Illuminate\Database\QueryException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'kompetensi.app_lembaga' doesn't exist (SQL: select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = v2 and `a`.`soft_delete` = 0 limit 1)

  at /home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Connection.php:671
  at Illuminate\Database\Connection->runQueryCallback('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array('v2', 0), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Connection.php:631)
  at Illuminate\Database\Connection->run('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array('v2', 0), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Connection.php:339)
  at Illuminate\Database\Connection->select('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array('v2', 0), true)
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2270)
  at Illuminate\Database\Query\Builder->runSelect()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2258)
  at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2753)
  at Illuminate\Database\Query\Builder->onceWithColumns(array('*'), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2259)
  at Illuminate\Database\Query\Builder->get(array('*'))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php:143)
  at Illuminate\Database\Query\Builder->first()
     (/home/sdm-dikti/kompetensi-ng/app/Myapp/models/PortalModel.php:145)
  at App\Myapp\Models\PortalModel->getInfoLembaga('v2')
     (/home/sdm-dikti/kompetensi-ng/app/Http/Controllers/PortalController.php:25)
  at App\Http\Controllers\PortalController->__construct(object(PortalModel))
  at ReflectionClass->newInstanceArgs(array(object(PortalModel)))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Container/Container.php:849)
  at Illuminate\Container\Container->build('App\\Http\\Controllers\\PortalController')
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Container/Container.php:691)
  at Illuminate\Container\Container->resolve('App\\Http\\Controllers\\PortalController', array(), true)
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:796)
  at Illuminate\Foundation\Application->resolve('App\\Http\\Controllers\\PortalController', array())
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Container/Container.php:637)
  at Illuminate\Container\Container->make('App\\Http\\Controllers\\PortalController', array())
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:781)
  at Illuminate\Foundation\Application->make('App\\Http\\Controllers\\PortalController')
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Route.php:253)
  at Illuminate\Routing\Route->getController()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Route.php:970)
  at Illuminate\Routing\Route->controllerMiddleware()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Route.php:931)
  at Illuminate\Routing\Route->gatherMiddleware()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:702)
  at Illuminate\Routing\Router->gatherRouteMiddleware(object(Route))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:678)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/fruitcake/laravel-cors/src/HandleCors.php:37)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/html/v2/index.php:55)                

[2/3] Exception

Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'kompetensi.app_lembaga' doesn't exist

  at /home/sdm-dikti/kompetensi-ng/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDO/Exception.php:18
  at Doctrine\DBAL\Driver\PDO\Exception::new(object(PDOException))
     (/home/sdm-dikti/kompetensi-ng/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:84)
  at Doctrine\DBAL\Driver\PDOConnection->prepare('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1')
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Connection.php:331)
  at Illuminate\Database\Connection->Illuminate\Database\{closure}('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array('v2', 0))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664)
  at Illuminate\Database\Connection->runQueryCallback('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array('v2', 0), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Connection.php:631)
  at Illuminate\Database\Connection->run('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array('v2', 0), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Connection.php:339)
  at Illuminate\Database\Connection->select('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array('v2', 0), true)
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2270)
  at Illuminate\Database\Query\Builder->runSelect()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2258)
  at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2753)
  at Illuminate\Database\Query\Builder->onceWithColumns(array('*'), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2259)
  at Illuminate\Database\Query\Builder->get(array('*'))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php:143)
  at Illuminate\Database\Query\Builder->first()
     (/home/sdm-dikti/kompetensi-ng/app/Myapp/models/PortalModel.php:145)
  at App\Myapp\Models\PortalModel->getInfoLembaga('v2')
     (/home/sdm-dikti/kompetensi-ng/app/Http/Controllers/PortalController.php:25)
  at App\Http\Controllers\PortalController->__construct(object(PortalModel))
  at ReflectionClass->newInstanceArgs(array(object(PortalModel)))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Container/Container.php:849)
  at Illuminate\Container\Container->build('App\\Http\\Controllers\\PortalController')
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Container/Container.php:691)
  at Illuminate\Container\Container->resolve('App\\Http\\Controllers\\PortalController', array(), true)
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:796)
  at Illuminate\Foundation\Application->resolve('App\\Http\\Controllers\\PortalController', array())
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Container/Container.php:637)
  at Illuminate\Container\Container->make('App\\Http\\Controllers\\PortalController', array())
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:781)
  at Illuminate\Foundation\Application->make('App\\Http\\Controllers\\PortalController')
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Route.php:253)
  at Illuminate\Routing\Route->getController()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Route.php:970)
  at Illuminate\Routing\Route->controllerMiddleware()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Route.php:931)
  at Illuminate\Routing\Route->gatherMiddleware()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:702)
  at Illuminate\Routing\Router->gatherRouteMiddleware(object(Route))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:678)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/fruitcake/laravel-cors/src/HandleCors.php:37)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/html/v2/index.php:55)                

[1/3] PDOException

PDOException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'kompetensi.app_lembaga' doesn't exist

  at /home/sdm-dikti/kompetensi-ng/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:79
  at PDO->prepare('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array())
     (/home/sdm-dikti/kompetensi-ng/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:79)
  at Doctrine\DBAL\Driver\PDOConnection->prepare('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1')
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Connection.php:331)
  at Illuminate\Database\Connection->Illuminate\Database\{closure}('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array('v2', 0))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664)
  at Illuminate\Database\Connection->runQueryCallback('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array('v2', 0), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Connection.php:631)
  at Illuminate\Database\Connection->run('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array('v2', 0), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Connection.php:339)
  at Illuminate\Database\Connection->select('select `a`.`id_lembaga`, `a`.`nm_lembaga`, `a`.`alamat_lembaga`, `a`.`url`, `a`.`no_telp`, `a`.`logo`, `a`.`id_jenis_lembaga` from `app_lembaga` as `a` where `a`.`url` = ? and `a`.`soft_delete` = ? limit 1', array('v2', 0), true)
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2270)
  at Illuminate\Database\Query\Builder->runSelect()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2258)
  at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2753)
  at Illuminate\Database\Query\Builder->onceWithColumns(array('*'), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2259)
  at Illuminate\Database\Query\Builder->get(array('*'))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php:143)
  at Illuminate\Database\Query\Builder->first()
     (/home/sdm-dikti/kompetensi-ng/app/Myapp/models/PortalModel.php:145)
  at App\Myapp\Models\PortalModel->getInfoLembaga('v2')
     (/home/sdm-dikti/kompetensi-ng/app/Http/Controllers/PortalController.php:25)
  at App\Http\Controllers\PortalController->__construct(object(PortalModel))
  at ReflectionClass->newInstanceArgs(array(object(PortalModel)))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Container/Container.php:849)
  at Illuminate\Container\Container->build('App\\Http\\Controllers\\PortalController')
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Container/Container.php:691)
  at Illuminate\Container\Container->resolve('App\\Http\\Controllers\\PortalController', array(), true)
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:796)
  at Illuminate\Foundation\Application->resolve('App\\Http\\Controllers\\PortalController', array())
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Container/Container.php:637)
  at Illuminate\Container\Container->make('App\\Http\\Controllers\\PortalController', array())
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:781)
  at Illuminate\Foundation\Application->make('App\\Http\\Controllers\\PortalController')
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Route.php:253)
  at Illuminate\Routing\Route->getController()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Route.php:970)
  at Illuminate\Routing\Route->controllerMiddleware()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Route.php:931)
  at Illuminate\Routing\Route->gatherMiddleware()
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:702)
  at Illuminate\Routing\Router->gatherRouteMiddleware(object(Route))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:678)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/fruitcake/laravel-cors/src/HandleCors.php:37)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/sdm-dikti/kompetensi-ng/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/html/v2/index.php:55)