-
@if ($course->getTranslation('short_desc', $lang))
- @lang('home.course_goals') @endif
- @lang('home.course_data')
- @lang('home.course_info') @if (!empty($course->course_file))
- @lang('home.course_file') @endif @if ($course->public_reviews->count() > 0)
- @lang('home.reviews') @endif
@if ($course->getTranslation('short_desc', $lang))
@if (!empty($course->course_file))
@endif
@if ($course->public_reviews->count() > 0)
{!! $course->getTranslation('short_desc', $lang) !!}
@endif
-
@lang('home.course_title')
{{ $course->name }}
@if ($course->overall_time)
-
@lang('home.overall_time')
{{ $course->overall_time . ' ' . __('home.hour') }}
@endif
@if ($course->overall_days)
-
@lang('home.overall_days')
{{ $course->overall_days . ' ' . __('home.day') }}
@endif
-
@lang('home.course_type')
-
@if (!empty($course->type) && is_iterable($course->type))
@foreach ($course->type as $course_index => $course_type)
- {{ __('home.' . $course_type) }} @endforeach @endif
@if ($course->last_training && $course->show_last_training)
-
@lang('home.nearest_start_date')
- {{$course->just_show?__('home.soon'): $course->last_training->start_date->format('Y-m-d') }}
@endif
@if ($course->instructors->count()>0)
-
@lang('home.instructors')
-
@foreach ($course->instructors as $course_instructor)
- {{ $course_instructor->name }} @endforeach
@endif
@lang('home.about_course')
{!! html_entity_decode($course->long_desc) !!}@lang('home.reviews') ({{ $course->public_reviews->count() }})
-
@foreach ($course->public_reviews ?? [] as $course_review)
-
badertech Internal Server ErrorErrorException ErrorExceptionUndefined variable $course_reviewGET badertech.com.saPHP 8.3.27 — Laravel 11.46.144 vendor frames collapsed22 vendor frames collapsedapp/Payment/Strategies/TabbyPaymentGateway.php :315</a></h6> </div> <div class="reviewer-rating"> <div class="star-rate"> <span class="ratings"> <?php $rate = intval($course_review->rate); ?> @for ($i = 1; $i <= $rate; $i++) <i class="fa-solid fa-star filled"></i> @endfor @for ($i = 1; $i <= 5 - $rate; $i++) <i class="fa-regular fa-star"></i> @endfor </span> <span class="rating-count">{{ $course_review->rate }} </span> </div> <p>{{ $course_review->created_at->diffForHumans() }}</p>vendor/composer/ClassLoader.php :576* * @param string $file * @return void */ self::$includeFile = \Closure::bind(static function($file) { include $file; }, null, null); } }vendor/composer/ClassLoader.php :427*/ public function loadClass($class) { if ($file = $this->findFile($class)) { $includeFile = self::$includeFile; $includeFile($file); return true; } return null; } /** * Finds the path to the file where the class is defined. * * @param string $class The name of the classvendor/laravel/framework/src/Illuminate/Container/Container.php :959array_pop($this->buildStack); } } try { $reflector = new ReflectionClass($concrete); } catch (ReflectionException $e) { throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e); } // If the type is not instantiable, the developer is attempting to resolve // an abstract type such as an Interface or Abstract Class and there is // no binding registered for the abstractions so we need to bail out. if (! $reflector->isInstantiable()) { return $this->notInstantiable($concrete); }vendor/laravel/framework/src/Illuminate/Container/Container.php :832// We're ready to instantiate an instance of the concrete type registered for // the binding. This will instantiate the types, as well as resolve any of // its "nested" dependencies recursively until all have gotten resolved. $object = $this->isBuildable($concrete, $abstract) ? $this->build($concrete) : $this->make($concrete); // If we defined any extenders for this type, we'll need to spin through them // and apply them to the object being built. This allows for the extension // of services, such as changing configuration or decorating the object. foreach ($this->getExtenders($abstract) as $extender) { $object = $extender($object, $this); } // If the requested type is registered as a singleton we'll want to cache off // the instances in "memory" so we can return it later without creating anvendor/laravel/framework/src/Illuminate/Foundation/Application.php :1078*/ protected function resolve($abstract, $parameters = [], $raiseEvents = true) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::resolve($abstract, $parameters, $raiseEvents); } /** * Load the deferred provider if the given type is a deferred service and the instance has not been loaded. * * @param string $abstract * @return void */ protected function loadDeferredProviderIfNeeded($abstract) { if ($this->isDeferredService($abstract) && ! isset($this->instances[$abstract])) {vendor/laravel/framework/src/Illuminate/Container/Container.php :763* * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { return $this->resolve($abstract, $parameters); } /** * {@inheritdoc} * * @template TClass of object * * @param string|class-string<TClass> $id * @return ($id is class-string<TClass> ? TClass : mixed) */ public function get(string $id)vendor/laravel/framework/src/Illuminate/Foundation/Application.php :1058*/ public function make($abstract, array $parameters = []) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::make($abstract, $parameters); } /** * Resolve the given type from the container. * * @template TClass of object * * @param string|class-string<TClass>|callable $abstract * @param array $parameters * @param bool $raiseEvents * @return ($abstract is class-string<TClass> ? TClass : mixed)vendor/laravel/framework/src/Illuminate/Container/Container.php :1133protected function resolveClass(ReflectionParameter $parameter) { try { return $parameter->isVariadic() ? $this->resolveVariadicClass($parameter) : $this->make(Util::getParameterClassName($parameter)); } // If we can not resolve the class instance, we will check to see if the value // is optional, and if it is we will return the optional parameter value as // the value of the dependency, similarly to how we do this with scalars. catch (BindingResolutionException $e) { if ($parameter->isDefaultValueAvailable()) { array_pop($this->with); return $parameter->getDefaultValue(); }vendor/laravel/framework/src/Illuminate/Container/Container.php :1043// If the class is null, it means the dependency is a string or some other // primitive type which we can not resolve since it is not a class and // we will just bomb out with an error since we have no-where to go. $result ??= is_null(Util::getParameterClassName($dependency)) ? $this->resolvePrimitive($dependency) : $this->resolveClass($dependency); $this->fireAfterResolvingAttributeCallbacks($dependency->getAttributes(), $result); if ($dependency->isVariadic()) { $results = array_merge($results, $result); } else { $results[] = $result; } } return $results;vendor/laravel/framework/src/Illuminate/Container/Container.php :994// Once we have all the constructor's parameters we can create each of the // dependency instances and then use the reflection instances to make a // new instance of this class, injecting the created dependencies in. try { $instances = $this->resolveDependencies($dependencies); } catch (BindingResolutionException $e) { array_pop($this->buildStack); throw $e; } array_pop($this->buildStack); $this->fireAfterResolvingAttributeCallbacks( $reflector->getAttributes(), $instance = $reflector->newInstanceArgs($instances) );vendor/laravel/framework/src/Illuminate/Container/Container.php :832// We're ready to instantiate an instance of the concrete type registered for // the binding. This will instantiate the types, as well as resolve any of // its "nested" dependencies recursively until all have gotten resolved. $object = $this->isBuildable($concrete, $abstract) ? $this->build($concrete) : $this->make($concrete); // If we defined any extenders for this type, we'll need to spin through them // and apply them to the object being built. This allows for the extension // of services, such as changing configuration or decorating the object. foreach ($this->getExtenders($abstract) as $extender) { $object = $extender($object, $this); } // If the requested type is registered as a singleton we'll want to cache off // the instances in "memory" so we can return it later without creating anvendor/laravel/framework/src/Illuminate/Foundation/Application.php :1078*/ protected function resolve($abstract, $parameters = [], $raiseEvents = true) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::resolve($abstract, $parameters, $raiseEvents); } /** * Load the deferred provider if the given type is a deferred service and the instance has not been loaded. * * @param string $abstract * @return void */ protected function loadDeferredProviderIfNeeded($abstract) { if ($this->isDeferredService($abstract) && ! isset($this->instances[$abstract])) {vendor/laravel/framework/src/Illuminate/Container/Container.php :763* * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { return $this->resolve($abstract, $parameters); } /** * {@inheritdoc} * * @template TClass of object * * @param string|class-string<TClass> $id * @return ($id is class-string<TClass> ? TClass : mixed) */ public function get(string $id)vendor/laravel/framework/src/Illuminate/Foundation/Application.php :1058*/ public function make($abstract, array $parameters = []) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::make($abstract, $parameters); } /** * Resolve the given type from the container. * * @template TClass of object * * @param string|class-string<TClass>|callable $abstract * @param array $parameters * @param bool $raiseEvents * @return ($abstract is class-string<TClass> ? TClass : mixed)vendor/laravel/framework/src/Illuminate/Container/Container.php :1133protected function resolveClass(ReflectionParameter $parameter) { try { return $parameter->isVariadic() ? $this->resolveVariadicClass($parameter) : $this->make(Util::getParameterClassName($parameter)); } // If we can not resolve the class instance, we will check to see if the value // is optional, and if it is we will return the optional parameter value as // the value of the dependency, similarly to how we do this with scalars. catch (BindingResolutionException $e) { if ($parameter->isDefaultValueAvailable()) { array_pop($this->with); return $parameter->getDefaultValue(); }vendor/laravel/framework/src/Illuminate/Container/Container.php :1043// If the class is null, it means the dependency is a string or some other // primitive type which we can not resolve since it is not a class and // we will just bomb out with an error since we have no-where to go. $result ??= is_null(Util::getParameterClassName($dependency)) ? $this->resolvePrimitive($dependency) : $this->resolveClass($dependency); $this->fireAfterResolvingAttributeCallbacks($dependency->getAttributes(), $result); if ($dependency->isVariadic()) { $results = array_merge($results, $result); } else { $results[] = $result; } } return $results;vendor/laravel/framework/src/Illuminate/Container/Container.php :994// Once we have all the constructor's parameters we can create each of the // dependency instances and then use the reflection instances to make a // new instance of this class, injecting the created dependencies in. try { $instances = $this->resolveDependencies($dependencies); } catch (BindingResolutionException $e) { array_pop($this->buildStack); throw $e; } array_pop($this->buildStack); $this->fireAfterResolvingAttributeCallbacks( $reflector->getAttributes(), $instance = $reflector->newInstanceArgs($instances) );vendor/laravel/framework/src/Illuminate/Container/Container.php :832// We're ready to instantiate an instance of the concrete type registered for // the binding. This will instantiate the types, as well as resolve any of // its "nested" dependencies recursively until all have gotten resolved. $object = $this->isBuildable($concrete, $abstract) ? $this->build($concrete) : $this->make($concrete); // If we defined any extenders for this type, we'll need to spin through them // and apply them to the object being built. This allows for the extension // of services, such as changing configuration or decorating the object. foreach ($this->getExtenders($abstract) as $extender) { $object = $extender($object, $this); } // If the requested type is registered as a singleton we'll want to cache off // the instances in "memory" so we can return it later without creating anvendor/laravel/framework/src/Illuminate/Foundation/Application.php :1078*/ protected function resolve($abstract, $parameters = [], $raiseEvents = true) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::resolve($abstract, $parameters, $raiseEvents); } /** * Load the deferred provider if the given type is a deferred service and the instance has not been loaded. * * @param string $abstract * @return void */ protected function loadDeferredProviderIfNeeded($abstract) { if ($this->isDeferredService($abstract) && ! isset($this->instances[$abstract])) {vendor/laravel/framework/src/Illuminate/Container/Container.php :763* * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { return $this->resolve($abstract, $parameters); } /** * {@inheritdoc} * * @template TClass of object * * @param string|class-string<TClass> $id * @return ($id is class-string<TClass> ? TClass : mixed) */ public function get(string $id)vendor/laravel/framework/src/Illuminate/Foundation/Application.php :1058*/ public function make($abstract, array $parameters = []) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); return parent::make($abstract, $parameters); } /** * Resolve the given type from the container. * * @template TClass of object * * @param string|class-string<TClass>|callable $abstract * @param array $parameters * @param bool $raiseEvents * @return ($abstract is class-string<TClass> ? TClass : mixed)vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :198[$name, $parameters] = $this->parsePipeString($pipe); // If the pipe is a string we will parse the string and resolve the class out // of the dependency injection container. We can then build a callable and // execute the pipe function giving in the parameters that are required. $pipe = $this->getContainer()->make($name); $parameters = array_merge([$passable, $stack], $parameters); } else { // If the pipe is already an object we'll just make a callable and pass it to // the pipe as-is. There is no need to do any extra parsing and formatting // 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)vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php :51} throw $exception; } return $next($request); } }vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php :88$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); } }); } throw new TokenMismatchException('CSRF token mismatch.'); } /** * Determine if the HTTP request uses a ‘read’ verb.vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php :49// 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); } }vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php :121$this->startSession($request, $session) ); $this->collectGarbage($session); $response = $next($request); $this->storeCurrentUrl($request, $session); $this->addCookieToResponse($response, $session); // Again, if the session has been configured we will need to close out the session // so that the attributes may be persisted to some storage medium. We will also // add the session identifier cookie to the application response headers now. $this->saveSession($request); return $response;vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php :64if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } return $this->handleStatefulRequest($request, $session, $next); } /** * Handle the given request within session state. * * @param \Illuminate\Http\Request $request * @param \Illuminate\Contracts\Session\Session $session * @param \Closure $next * @return mixed */ protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php :37* @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } return $response; } }vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php :75* @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. * * @param \Symfony\Component\HttpFoundation\Request $request * @return \Symfony\Component\HttpFoundation\Request */ protected function decrypt(Request $request) { foreach ($request->cookies as $key => $cookie) {vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :127$pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); try { return $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } /** * Run the pipeline and return the result. * * @return mixedvendor/laravel/framework/src/Illuminate/Routing/Router.php :807$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } /** * Gather the middleware for the given route with resolved class names. * * @param \Illuminate\Routing\Route $route * @return array */ public function gatherRouteMiddleware(Route $route)vendor/laravel/framework/src/Illuminate/Routing/Router.php :786$request->setRouteResolver(fn () => $route); $this->events->dispatch(new RouteMatched($route, $request)); return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } /** * Run the given route within a Stack "onion" instance. * * @param \Illuminate\Routing\Route $route * @param \Illuminate\Http\Request $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request)vendor/laravel/framework/src/Illuminate/Routing/Router.php :750* @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. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Routing\Route */ protected function findRoute($request) { $this->events->dispatch(new Routing($request));vendor/laravel/framework/src/Illuminate/Routing/Router.php :739*/ public function dispatch(Request $request) { $this->currentRequest = $request; return $this->dispatchToRoute($request); } /** * Dispatch the request to a route and return the response. * * @param \Illuminate\Http\Request $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatchToRoute(Request $request) { return $this->runRoute($request, $this->findRoute($request));vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php :201protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); return $this->router->dispatch($request); }; } /** * Call the terminate method on any terminable middleware. * * @param \Illuminate\Http\Request $request * @param \Illuminate\Http\Response $response * @return void */ public function terminate($request, $response)vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :170*/ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php :19* @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); if ($response instanceof Response && SupportDisablingBackButtonCache::$disableBackButtonCache){ $response->headers->add([ 'Pragma' => 'no-cache', 'Expires' => 'Fri, 01 Jan 1990 00:00:00 GMT', 'Cache-Control' => 'no-cache, must-revalidate, no-store, max-age=0, private', ]); } return $response; }vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**app/Http/Middleware/PreventProductionMigrationsMiddleware.php :28$output->writeln("<error>Command {$command} is not allowed in production!</error>"); exit(1); } } return $next($request); } }vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php :21*/ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * * @param \Illuminate\Http\Request $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query);vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php :31if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * * @param string $key * @param mixed $value * @return mixed */ protected function transform($key, $value) {vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php :21*/ public function handle($request, Closure $next) { $this->clean($request); return $next($request); } /** * Clean the request's data. * * @param \Illuminate\Http\Request $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query);vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php :51if ($callback($request)) { return $next($request); } } return parent::handle($request, $next); } /** * Transform the given value. * * @param string $key * @param mixed $value * @return mixed */ protected function transform($key, $value) {vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php :27if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } return $next($request); } /** * Determine the server 'post_max_size' as bytes. * * @return int */ protected function getPostMaxSize() { if (is_numeric($postMaxSize = ini_get('post_max_size'))) { return (int) $postMaxSize;vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php :110null, $this->getHeaders($data) ); } return $next($request); } /** * Determine if the incoming request has a maintenance mode bypass cookie. * * @param \Illuminate\Http\Request $request * @param array $data * @return bool */ protected function hasValidBypassCookie($request, array $data) {vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php :49* @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { if (! $this->hasMatchingPath($request)) { return $next($request); } $this->cors->setOptions($this->container['config']->get('cors', [])); if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); $this->cors->varyHeader($response, 'Access-Control-Request-Method'); return $response; }vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php :58{ $request::setTrustedProxies([], $this->getTrustedHeaderNames()); $this->setTrustedProxyIpAddresses($request); return $next($request); } /** * Sets the trusted proxies on the request. * * @param \Illuminate\Http\Request $request * @return void */ protected function setTrustedProxyIpAddresses(Request $request) { $trustedIps = $this->proxies() ?: config('trustedproxy.proxies');vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php :22* @param \Closure $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } /** * Invoke the deferred callbacks. * * @param \Illuminate\Http\Request $request * @param \Symfony\Component\HttpFoundation\Response $response * @return void */ public function terminate(Request $request, Response $response) {vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :209// 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); } }; }; } /**vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php :127$pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); try { return $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } /** * Run the pipeline and return the result. * * @return mixedvendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php :176$this->bootstrap(); return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers());vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php :145$this->requestStartedAt = Carbon::now(); try { $request->enableHttpMethodParameterOverride(); $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); $response = $this->renderException($request, $e); } $this->app['events']->dispatch( new RequestHandled($request, $response) ); return $response;vendor/laravel/framework/src/Illuminate/Foundation/Application.php :1220*/ public function handleRequest(Request $request) { $kernel = $this->make(HttpKernelContract::class); $response = $kernel->handle($request)->send(); $kernel->terminate($request, $response); } /** * Handle the incoming Artisan command. * * @param \Symfony\Component\Console\Input\InputInterface $input * @return int */ public function handleCommand(InputInterface $input)/home/badertechco/public_html/index.php :17// Register the Composer autoloader... require __DIR__.'/../LMS/vendor/autoload.php'; // Bootstrap Laravel and handle the request... (require_once __DIR__.'/../LMS/bootstrap/app.php') ->handleRequest(Request::capture());RequestGET /en/service/consultingHeadersaccept*/*accept-encodinggzip, br, zstd, deflatehostbadertech.com.sauser-agentMozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)x-https1BodyNo body dataApplicationRoutingcontrollerApp\Http\Controllers\WebSite\ServiceController@serviceroute namewebsite.servicemiddlewareweb, localeSessionRedirect, localizationRedirect, localeViewPath, website.design, website.platformType, langRedirectionRouting Parameters{ "service": { "id": 1, "name": { "ar": "الاستشارات", "en": "Consulting" }, "short_desc": { "ar": "في عالم الأعمال المتغير بوتيرة سريعة، تصبح الاستشارات المتخصصة أداة حيوية لتعزيز الأداء وتحقيق التميز. في بادر للتدريب، نقدم خدمات استشارية متكاملة", "en": "In a rapidly changing business world, specialized consulting becomes a vital tool for enhancing performance and achieving excellence." }, "long_desc": { "ar": "<article class=\"post type-post single-post py-4 lg:py-6 xl:py-9\" data-anime=\"translateY: [60, 0]; opacity: [0, 1]; easing: easeOutExpo; duration: 850; delay: 300;\">\r\n<div class=\"panel mt-4 lg:mt-4 xl:mt-6\">\r\n<div class=\"container max-w-xl\">\r\n<div class=\"post-content panel fs-6 md:fs-5\" data-uc-lightbox=\"animation: scale\">\r\n<p dir=\"rtl\" style=\"text-align: right;\">في عالم الأعمال المتغير بوتيرة سريعة، تصبح الاستشارات المتخصصة أداة حيوية لتعزيز الأداء وتحقيق التميز. في بادر للتدريب، نقدم خدمات استشارية متكاملة تلبي احتياجات الشركات والأفراد، من خلال حلول متطورة في الإدارة، التقنية، المالية، والتدريب، مما يمكن عملاءنا من اتخاذ قرارات استراتيجية قائمة على بيانات دقيقة ورؤى متقدمة.</p>\r\n<h2 dir=\"rtl\" style=\"text-align: right;\">ما هي استشارات التدريب والتطوير المهني؟</h2>\r\n<p dir=\"rtl\" style=\"text-align: right;\">تعتبر الاستشارات التدريبية أحد المحاور الأساسية لتطوير الأداء المؤسسي والمهني. تهدف هذه الاستشارات إلى تحليل الاحتياجات التدريبية، وتصميم استراتيجيات تعليمية تواكب التغيرات السريعة في سوق العمل. من خلال برامج متخصصة، نساعد الشركات والأفراد في تحسين المهارات، تطوير الكفاءات، وضمان استدامة النجاح.</p>\r\n<h2 dir=\"rtl\" style=\"text-align: right;\">لماذا تحتاج الشركات إلى استشارات تدريبية؟</h2>\r\n<ul dir=\"rtl\" style=\"text-align: right;\">\r\n<li>تعزيز المهارات القيادية والإدارية.</li>\r\n<li>تحسين أداء الفرق داخل المؤسسات.</li>\r\n<li>تبني أفضل الممارسات العالمية في مجال الأعمال.</li>\r\n<li>تحقيق التميز التنافسي عبر استراتيجيات حديثة.</li>\r\n</ul>\r\n<p>#call#</p>\r\n<h2 dir=\"rtl\" style=\"text-align: right;\">خدمات الاستشارات المقدمة من بادر للتدريب</h2>\r\n<p dir=\"rtl\" style=\"text-align: right;\">في بادر للتدريب ، نقدم مجموعة متكاملة من الحلول الاستشارية التي تلبي متطلبات الأعمال في مختلف القطاعات، ومن أبرز خدماتنا:</p>\r\n<ul dir=\"rtl\" style=\"text-align: right;\">\r\n<li>\r\n<h3>الاستشارات الرقمية والتحول التقني</h3>\r\n</li>\r\n</ul>\r\n<p dir=\"rtl\" style=\"text-align: right;\">نساعد الشركات على تحقيق التحول الرقمي من خلال تقديم حلول متكاملة تشمل استراتيجيات البنية التحتية الرقمية، تطوير الأنظمة الذكية، وتحسين العمليات التقنية، مما يمكن المؤسسات من تبني أحدث الابتكارات في مجالات التكنولوجيا الحديثة.</p>\r\n<ul dir=\"rtl\" style=\"text-align: right;\">\r\n<li>\r\n<h3>الاستشارات المالية والاستثمارية</h3>\r\n</li>\r\n</ul>\r\n<p dir=\"rtl\" style=\"text-align: right;\">نقدم استشارات مالية متخصصة لدعم اتخاذ قرارات مدروسة في التخطيط المالي، تحليل المخاطر، وإدارة الميزانيات، مما يساعد الشركات في تعزيز الاستدامة وتحقيق النمو المالي المتوازن.</p>\r\n<ul dir=\"rtl\" style=\"text-align: right;\">\r\n<li>\r\n<h3>الاستشارات الإدارية والتخطيط الاستراتيجي</h3>\r\n</li>\r\n</ul>\r\n<p dir=\"rtl\" style=\"text-align: right;\">تشمل خدماتنا الإدارية تحليل الهياكل التنظيمية، تحسين العمليات التشغيلية، وتطوير الكفاءات القيادية، مما يمكن المؤسسات من تعزيز الإنتاجية وتحقيق أهدافها بكفاءة.</p>\r\n<ul dir=\"rtl\" style=\"text-align: right;\">\r\n<li>\r\n<h3>استشارات التدريب والتطوير المهني</h3>\r\n</li>\r\n</ul>\r\n<p dir=\"rtl\" style=\"text-align: right;\">نعمل على تصميم برامج تدريبية متكاملة تستهدف تحسين المهارات الفردية والجماعية، تعزيز القيادة، وتطوير المهارات التقنية والإدارية لضمان تحقيق التميز المهني والمؤسسي.</p>\r\n<p dir=\"rtl\" style=\"text-align: right;\">#call#</p>\r\n<h2 dir=\"rtl\" style=\"text-align: right;\">فوائد الحصول على استشارات متخصصة من بادر للتادريب </h2>\r\n<ul dir=\"rtl\" style=\"text-align: right;\">\r\n<li>\r\n<h3>تحقيق نتائج ملموسة</h3>\r\n</li>\r\n</ul>\r\n<p dir=\"rtl\" style=\"text-align: right;\">نساعد الشركات على تحقيق نتائج قابلة للقياس من خلال استراتيجيات مدروسة تعزز الكفاءة التشغيلية وتعزز الإنتاجية.</p>\r\n<ul dir=\"rtl\" style=\"text-align: right;\">\r\n<li>\r\n<h3>حلول مخصصة وفق احتياجات العملاء</h3>\r\n</li>\r\n</ul>\r\n<p dir=\"rtl\" style=\"text-align: right;\">كل استشارة نقدمها في بادر للتدريب مصممة خصيصًا لتناسب احتياجات ومتطلبات العميل، مما يضمن تقديم حلول عملية وفعالة.</p>\r\n<ul dir=\"rtl\" style=\"text-align: right;\">\r\n<li>\r\n<h3>تحليل البيانات لدعم اتخاذ القرار</h3>\r\n</li>\r\n</ul>\r\n<p dir=\"rtl\" style=\"text-align: right;\">نستخدم تقنيات تحليل البيانات وذكاء الأعمال لتقديم رؤى دقيقة تساعد في اتخاذ قرارات استراتيجية مدروسة.</p>\r\n<ul dir=\"rtl\" style=\"text-align: right;\">\r\n<li>\r\n<h3>تحسين كفاءة فرق العمل</h3>\r\n</li>\r\n</ul>\r\n<p dir=\"rtl\" style=\"text-align: right;\">نعمل على تنمية مهارات الفرق داخل المؤسسات، مما يعزز روح التعاون والإنتاجية في بيئة العمل.</p>\r\n<ul dir=\"rtl\" style=\"text-align: right;\">\r\n<li>\r\n<h3>دعم التحول الرقمي</h3>\r\n</li>\r\n</ul>\r\n<p dir=\"rtl\" style=\"text-align: right;\">نقدم استشارات رقمية متقدمة تضمن للشركات تبني أحدث التقنيات، مما يعزز من مرونتها وقدرتها التنافسية في السوق.</p>\r\n<h2 dir=\"rtl\" style=\"text-align: right;\">لماذا تختار بادر للتدريب كشريك استشاري؟</h2>\r\n<ul dir=\"rtl\" style=\"text-align: right;\">\r\n<li>خبرة واسعة وفريق متخصص: يضم فريقنا نخبة من المستشارين المتخصصين في مجالات متعددة، مما يضمن تقديم حلول قائمة على أفضل الممارسات العالمية.</li>\r\n<li>نهج استشاري متكامل: نقدم استشارات مبنية على تحليل دقيق لبيئة العمل، التحديات، والفرص، مما يساعد في تقديم حلول فاعلة تدعم النمو والتطور.</li>\r\n<li>التزام بالجودة والتميز: نلتزم بتقديم خدمات استشارية عالية الجودة تضمن تحقيق الأهداف بفعالية وسرعة.</li>\r\n<li>ابتكار وحلول حديثة: نعتمد على الابتكار في تقديم الحلول، مما يساعد عملاءنا في مواكبة التغيرات والتطورات السريعة في السوق.</li>\r\n</ul>\r\n<h2 dir=\"rtl\" style=\"text-align: right;\">استشارات بادر للتدريب : شريكك نحو النجاح والتفوق</h2>\r\n<p dir=\"rtl\" style=\"text-align: right;\">في ظل بيئة أعمال تنافسية ومتطورة، يعد اختيار بادر للتدريب كشريك استشاري خطوة استراتيجية تعزز فرص النمو والابتكار داخل مؤسستك. بفضل خبرتنا الواسعة، نقدم حلولاً مبتكرة، استراتيجيات متقدمة، ودعمًا استشاريًا مستمرًا لضمان تحقيق أهدافك بكفاءة وفعالية.</p>\r\n<p dir=\"rtl\" style=\"text-align: right;\"> </p>\r\n<p dir=\"rtl\" style=\"text-align: right;\"><strong>هل أنت مستعد للارتقاء بعملك إلى مستويات جديدة؟ تواصل معنا اليوم للاستفادة من أفضل الحلول الاستشارية المصممة خصيصًا لاحتياجاتك.</strong></p>\r\n<p dir=\"rtl\" style=\"text-align: right;\"><strong>#call#</strong></p>\r\n</div>\r\n</div>\r\n</div>\r\n</article>", "en": "<p>In a rapidly changing business world, specialized consulting becomes a vital tool for enhancing performance and achieving excellence. At BaderTech, we provide comprehensive consulting services tailored to the needs of companies and individuals through advanced solutions in management, technology, finance, and training. Our approach empowers clients to make strategic decisions based on precise data and insightful analytics.</p>\r\n<h2>What is Training and Professional Development Consulting?</h2>\r\n<p>Training consulting is one of the essential pillars for developing institutional and professional performance. These consultations aim to analyze training needs and design educational strategies that keep up with rapid changes in the job market. Through specialized programs, we help companies and individuals enhance skills, develop competencies, and ensure sustainable success.</p>\r\n<p>#call#</p>\r\n<h2>Why Do Companies Need Training Consulting?</h2>\r\n<ul>\r\n<li>Enhancing leadership and managerial skills.</li>\r\n<li>Improving team performance within organizations.</li>\r\n<li>Adopting best global business practices.</li>\r\n<li>Achieving competitive excellence through modern strategies.</li>\r\n</ul>\r\n<h2>Consulting Services Offered by BaderTech</h2>\r\n<p>At BaderTech, we offer a comprehensive range of consulting solutions that meet business needs across various sectors. Our key services include:</p>\r\n<ul>\r\n<li>\r\n<h3>Digital Consulting and Technological Transformation</h3>\r\n</li>\r\n</ul>\r\n<p>We assist companies in achieving digital transformation by providing integrated solutions, including digital infrastructure strategies, smart system development, and process optimization. This enables organizations to adopt the latest innovations in modern technology fields.</p>\r\n<ul>\r\n<li>\r\n<h3>Financial and Investment Consulting</h3>\r\n</li>\r\n</ul>\r\n<p>We provide specialized financial consulting to support strategic financial planning, risk analysis, and budget management, helping businesses enhance sustainability and achieve balanced financial growth.</p>\r\n<ul>\r\n<li>\r\n<h3>Administrative Consulting and Strategic Planning</h3>\r\n</li>\r\n</ul>\r\n<p>Our administrative services include organizational structure analysis, operational process improvement, and leadership competency development. This enables companies to boost productivity and efficiently achieve their goals.</p>\r\n<ul>\r\n<li>\r\n<h3>Training and Professional Development Consulting</h3>\r\n</li>\r\n</ul>\r\n<p>We design comprehensive training programs that focus on enhancing individual and team skills, fostering leadership, and developing technical and administrative expertise to ensure professional and institutional excellence.</p>\r\n<h2>Benefits of Specialized Consulting from BaderTech</h2>\r\n<ul>\r\n<li>\r\n<h3>Achieving Measurable Results</h3>\r\n</li>\r\n</ul>\r\n<p>We help companies achieve quantifiable outcomes through well-planned strategies that enhance operational efficiency and increase productivity.</p>\r\n<ul>\r\n<li>\r\n<h3>Tailored Solutions to Meet Client Needs</h3>\r\n</li>\r\n</ul>\r\n<p>Every consultation we provide at BaderTech is specifically designed to suit the unique needs and requirements of each client, ensuring the delivery of practical and effective solutions.</p>\r\n<ul>\r\n<li>\r\n<h3>Data Analysis for Decision-Making</h3>\r\n</li>\r\n</ul>\r\n<p>We use data analysis and business intelligence techniques to provide precise insights that support well-informed strategic decision-making.</p>\r\n<ul>\r\n<li>\r\n<h3>Enhancing Team Efficiency</h3>\r\n</li>\r\n</ul>\r\n<p>We work on developing team skills within organizations, fostering collaboration, and increasing productivity in the workplace.</p>\r\n<ul>\r\n<li>\r\n<h3>Supporting Digital Transformation</h3>\r\n</li>\r\n</ul>\r\n<p>We offer advanced digital consulting to ensure companies adopt the latest technologies, enhancing their agility and competitiveness in the market.</p>\r\n<h2>Why Choose BaderTech as Your Consulting Partner?</h2>\r\n<ul>\r\n<li>\r\n<h3>Extensive Expertise and a Specialized Team</h3>\r\n</li>\r\n</ul>\r\n<p>Our team comprises elite consulting professionals across multiple fields, ensuring solutions based on best global practices.</p>\r\n<ul>\r\n<li>\r\n<h3>A Comprehensive Consulting Approach</h3>\r\n</li>\r\n</ul>\r\n<p>We provide consulting services based on a detailed analysis of work environments, challenges, and opportunities, enabling the delivery of effective solutions that support growth and progress.</p>\r\n<ul>\r\n<li>\r\n<h3>Commitment to Quality and Excellence</h3>\r\n</li>\r\n</ul>\r\n<p>We are dedicated to providing high-quality consulting services that ensure objectives are achieved effectively and efficiently.</p>\r\n<ul>\r\n<li>\r\n<h3>Innovation and Modern Solutions</h3>\r\n</li>\r\n</ul>\r\n<p>We leverage innovation in delivering solutions, helping our clients keep up with changes and rapid market developments.</p>\r\n<h2>BaderTech Consulting: Your Partner for Success and Growth</h2>\r\n<p>In an increasingly competitive and evolving business environment, choosing BaderTech as your consulting partner is a strategic step that enhances growth and innovation within your organization. With our extensive experience, we provide innovative solutions, advanced strategies, and continuous consulting support to ensure your goals are achieved with efficiency and effectiveness.</p>\r\n<p>Are you ready to take your business to new heights? Contact us today to benefit from the best consulting solutions tailored specifically to your needs.</p>\r\n<p><strong>#call#</strong></p>" }, "image": "1841450656542367.webp", "alt_image": "الاستشارات", "slug": { "ar": "الاستشارات", "en": "consulting" }, "meta_title": { "ar": "الاستشارات المتخصصة | مركز بادر تكنولوجي", "en": "Specialized Consulting Services | Bader Technology Center" }, "meta_desc": { "ar": "احصل على استشارات متخصصة من مركز بادر تكنولوجي في مجالات الإدارة، التقنية، المالية، والتدريب. نقدم حلولًا مبتكرة تساعد الشركات والأفراد على تحسين الأداء واتخاذ قرارات استراتيجية مدروسة.", "en": "Receive specialized consulting services from Bader Technology Center in areas like management, technology, finance, and training. We offer innovative solutions to help businesses and individuals enhance performance and make informed strategic decisions." }, "status": "published", "parent_id": null, "home": 1, "menu": 1, "index": 1, "created_at": "2025-08-06T08:40:56.000000Z", "updated_at": "2025-09-08T14:50:55.000000Z", "deleted_at": null } }Database Queries only the first 100 queries are displayedmysql (1.09 ms)select * from `cache` where `key` in ('settings')mysql (0.2 ms)select * from `cache` where `key` in ('settings')mysql (0.17 ms)select * from `cache` where `key` in ('settings')mysql (0.17 ms)select * from `cache` where `key` in ('settings')mysql (0.47 ms)select exists (select 1 from information_schema.tables where table_schema = 'badertechco_db' and table_name = 'redirects' and table_type in ('BASE TABLE', 'SYSTEM VERSIONED')) as `exists`mysql (0.21 ms)select * from `redirects`mysql (0.44 ms)select exists (select 1 from information_schema.tables where table_schema = 'badertechco_db' and table_name = 'settings' and table_type in ('BASE TABLE', 'SYSTEM VERSIONED')) as `exists`mysql (0.3 ms)select * from `settings` limit 1mysql (0.26 ms)select * from `settings` limit 1mysql (0.26 ms)select exists (select 1 from information_schema.tables where table_schema = 'badertechco_db' and table_name = 'redirects' and table_type in ('BASE TABLE', 'SYSTEM VERSIONED')) as `exists`mysql (0.15 ms)select * from `redirects`mysql (0.46 ms)select * from `settings` limit 1mysql (0.25 ms)select * from `settings` limit 1mysql (0.61 ms)select * from `services` where (`id` = 'consulting' or json_unquote(json_extract(`slug`, '$."en"')) = 'consulting' or json_unquote(json_extract(`slug`, '$."ar"')) = 'consulting') and `services`.`deleted_at` is null limit 1mysql (0.25 ms)select * from `cache` where `key` in ('settings')mysql (0.19 ms)select * from `cache` where `key` in ('active_system_files')mysql (6.76 ms)select * from `cache` where `key` in ('head_menu')mysql (0.29 ms)select * from `cache` where `key` in ('footer_menu')mysql (0.16 ms)select * from `cache` where `key` in ('header_courses')mysql (0.15 ms)select * from `cache` where `key` in ('header_trainings')mysql (0.16 ms)select * from `cache` where `key` in ('header_categories')mysql (0.16 ms)select * from `cache` where `key` in ('header_fields')mysql (0.15 ms)select * from `cache` where `key` in ('header_blogs')mysql (0.15 ms)select * from `cache` where `key` in ('header_blog_categories')mysql (0.18 ms)select `id`, `name`, `slug` from `pages` where `status` = 'published' and `menu` = 1 and `pages`.`deleted_at` is nullmysql (0.18 ms)select `id`, `name`, `slug` from `services` where `status` = 'published' and `menu` = 1 and `services`.`deleted_at` is nullmysql (0.16 ms)select `id`, `name`, `slug` from `trainings` where `trainings`.`deleted_at` is nullmysql (0.44 ms)select * from `pages` where `status` = 'published' and `pages`.`deleted_at` is nullmysql (0.26 ms)select * from `cache` where `key` in ('settings')mysql (0.16 ms)select * from `cache` where `key` in ('active_system_files')mysql (6.85 ms)select * from `cache` where `key` in ('head_menu')mysql (0.26 ms)select * from `cache` where `key` in ('footer_menu')mysql (0.17 ms)select * from `cache` where `key` in ('header_courses')mysql (0.15 ms)select * from `cache` where `key` in ('header_trainings')mysql (0.15 ms)select * from `cache` where `key` in ('header_categories')mysql (0.17 ms)select * from `cache` where `key` in ('header_fields')mysql (0.16 ms)select * from `cache` where `key` in ('header_blogs')mysql (0.14 ms)select * from `cache` where `key` in ('header_blog_categories')mysql (0.18 ms)select `id`, `name`, `slug` from `pages` where `status` = 'published' and `menu` = 1 and `pages`.`deleted_at` is nullmysql (0.18 ms)select `id`, `name`, `slug` from `services` where `status` = 'published' and `menu` = 1 and `services`.`deleted_at` is nullmysql (0.17 ms)select `id`, `name`, `slug` from `trainings` where `trainings`.`deleted_at` is nullmysql (0.5 ms)select * from `pages` where `status` = 'published' and `pages`.`deleted_at` is nullmysql (0.22 ms)select * from `cache` where `key` in ('settings')mysql (0.16 ms)select * from `cache` where `key` in ('active_system_files')mysql (6.65 ms)select * from `cache` where `key` in ('head_menu')mysql (0.27 ms)select * from `cache` where `key` in ('footer_menu')mysql (0.17 ms)select * from `cache` where `key` in ('header_courses')mysql (0.15 ms)select * from `cache` where `key` in ('header_trainings')mysql (0.26 ms)select * from `cache` where `key` in ('header_categories')mysql (0.25 ms)select * from `cache` where `key` in ('header_fields')mysql (0.23 ms)select * from `cache` where `key` in ('header_blogs')mysql (0.22 ms)select * from `cache` where `key` in ('header_blog_categories')mysql (0.25 ms)select `id`, `name`, `slug` from `pages` where `status` = 'published' and `menu` = 1 and `pages`.`deleted_at` is nullmysql (0.24 ms)select `id`, `name`, `slug` from `services` where `status` = 'published' and `menu` = 1 and `services`.`deleted_at` is nullmysql (0.24 ms)select `id`, `name`, `slug` from `trainings` where `trainings`.`deleted_at` is nullmysql (0.74 ms)select * from `pages` where `status` = 'published' and `pages`.`deleted_at` is nullmysql (0.27 ms)select * from `cache` where `key` in ('settings')mysql (0.23 ms)select * from `cache` where `key` in ('active_system_files')mysql (7.29 ms)select * from `cache` where `key` in ('head_menu')mysql (0.28 ms)select * from `cache` where `key` in ('footer_menu')mysql (0.23 ms)select * from `cache` where `key` in ('header_courses')mysql (0.22 ms)select * from `cache` where `key` in ('header_trainings')mysql (0.24 ms)select * from `cache` where `key` in ('header_categories')mysql (0.24 ms)select * from `cache` where `key` in ('header_fields')mysql (0.22 ms)select * from `cache` where `key` in ('header_blogs')mysql (0.22 ms)select * from `cache` where `key` in ('header_blog_categories')mysql (0.22 ms)select `id`, `name`, `slug` from `pages` where `status` = 'published' and `menu` = 1 and `pages`.`deleted_at` is nullmysql (0.25 ms)select `id`, `name`, `slug` from `services` where `status` = 'published' and `menu` = 1 and `services`.`deleted_at` is nullmysql (0.23 ms)select `id`, `name`, `slug` from `trainings` where `trainings`.`deleted_at` is nullmysql (0.6 ms)select * from `pages` where `status` = 'published' and `pages`.`deleted_at` is nullmysql (0.26 ms)select * from `cache` where `key` in ('settings')mysql (0.18 ms)select * from `cache` where `key` in ('active_system_files')mysql (6.87 ms)select * from `cache` where `key` in ('head_menu')mysql (0.25 ms)select * from `cache` where `key` in ('footer_menu')mysql (0.17 ms)select * from `cache` where `key` in ('header_courses')mysql (0.15 ms)select * from `cache` where `key` in ('header_trainings')mysql (0.15 ms)select * from `cache` where `key` in ('header_categories')mysql (0.16 ms)select * from `cache` where `key` in ('header_fields')mysql (0.15 ms)select * from `cache` where `key` in ('header_blogs')mysql (0.15 ms)select * from `cache` where `key` in ('header_blog_categories')mysql (0.19 ms)select `id`, `name`, `slug` from `pages` where `status` = 'published' and `menu` = 1 and `pages`.`deleted_at` is nullmysql (0.17 ms)select `id`, `name`, `slug` from `services` where `status` = 'published' and `menu` = 1 and `services`.`deleted_at` is nullmysql (0.17 ms)select `id`, `name`, `slug` from `trainings` where `trainings`.`deleted_at` is nullmysql (0.46 ms)select * from `pages` where `status` = 'published' and `pages`.`deleted_at` is nullmysql (0.25 ms)select * from `cache` where `key` in ('settings')mysql (0.17 ms)select * from `cache` where `key` in ('active_system_files')mysql (6.74 ms)select * from `cache` where `key` in ('head_menu')mysql (0.23 ms)select * from `cache` where `key` in ('footer_menu')mysql (0.17 ms)select * from `cache` where `key` in ('header_courses')mysql (0.15 ms)select * from `cache` where `key` in ('header_trainings')mysql (0.16 ms)select * from `cache` where `key` in ('header_categories')mysql (0.17 ms)select * from `cache` where `key` in ('header_fields')mysql (0.15 ms)select * from `cache` where `key` in ('header_blogs')mysql (0.16 ms)select * from `cache` where `key` in ('header_blog_categories')mysql (0.17 ms)select `id`, `name`, `slug` from `pages` where `status` = 'published' and `menu` = 1 and `pages`.`deleted_at` is nullmysql (0.18 ms)select `id`, `name`, `slug` from `services` where `status` = 'published' and `menu` = 1 and `services`.`deleted_at` is nullmysql (0.23 ms)select `id`, `name`, `slug` from `trainings` where `trainings`.`deleted_at` is nullmysql (0.48 ms)select * from `pages` where `status` = 'published' and `pages`.`deleted_at` is nullmysql (0.21 ms)select * from `cache` where `key` in ('settings')mysql (0.16 ms)select * from `cache` where `key` in ('active_system_files')