[2026-06-01 10:04:31] production.INFO: %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:04:30.416Z"} 
[2026-06-01 10:04:31] production.DEBUG: Laravel Client PHP 13.9.0 8.4.21 Illuminate\Contracts\Container\BindingResolutionException 1780308268 Target class [App\Http\Controllers\Web\DettagliMagazzino] does not exist.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Container/Container.php 1127 build Illuminate\Container\Container // hand back the results of the functions, which allows functions to be // used as resolvers for more fine-tuned resolution of these objects. if ($concrete instanceof Closure) { $this->buildStack[] = spl_object_hash($concrete); null try { return $concrete($this, $this->getLastParameterOverride()); } finally { array_pop($this->buildStack); } } null try { $reflector = new ReflectionClass($concrete); } catch (ReflectionException $e) { throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e); } null // 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); } null if (is_a($concrete, SelfBuilding::class, true) && ! in_array($concrete, $this->buildStack, true)) { return $this->buildSelfBuildingInstance($concrete, $reflector); } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Container/Container.php 936 resolve Illuminate\Container\Container // so the developer can keep using the same objects instance every time. if (isset($this->instances[$abstract]) && ! $needsContextualBuild) { return $this->instances[$abstract]; } null $this->with[] = $parameters; null if (is_null($concrete)) { $concrete = $this->getConcrete($abstract); } null // 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); null // 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); } null // 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 an // entirely new instance of an object on each subsequent request for it. if ($this->isShared($abstract) && ! $needsContextualBuild) { $this->instances[$abstract] = $object; concrete App\Http\Controllers\Web\DettagliMagazzino string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Application.php 1078 resolve Illuminate\Foundation\Application * * @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) * * @throws \Illuminate\Contracts\Container\BindingResolutionException * @throws \Illuminate\Contracts\Container\CircularDependencyException */ protected function resolve($abstract, $parameters = [], $raiseEvents = true) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); null return parent::resolve($abstract, $parameters, $raiseEvents); } null /** * 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])) { $this->loadDeferredProvider($abstract); } } abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false raiseEvents true bool false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Container/Container.php 864 make Illuminate\Container\Container return $this->make($abstract, $parameters); } null /** * Resolve the given type from the container. * * @template TClass of object * * @param  string|class-string<TClass>  $abstract * @return ($abstract is class-string<TClass> ? TClass : mixed) * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { return $this->resolve($abstract, $parameters); } null /** * {@inheritdoc} * * @template TClass of object * * @param  string|class-string<TClass>  $id * @return ($id is class-string<TClass> ? TClass : mixed) * * @throws \Illuminate\Contracts\Container\CircularDependencyException * @throws \Illuminate\Container\EntryNotFoundException */ public function get(string $id) abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false raiseEvents true bool false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Application.php 1058 make Illuminate\Foundation\Application /** * Resolve the given type from the container. * * @template TClass of object * * @param  string|class-string<TClass>  $abstract * @param  array  $parameters * @return ($abstract is class-string<TClass> ? TClass : mixed) * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); null return parent::make($abstract, $parameters); } null /** * 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) * * @throws \Illuminate\Contracts\Container\BindingResolutionException * @throws \Illuminate\Contracts\Container\CircularDependencyException abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 290 getController Illuminate\Routing\Route * Get the controller instance for the route. * * @return mixed * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function getController() { if (! $this->isControllerAction()) { return null; } null if (! $this->controller) { $class = $this->getControllerClass(); null $this->controller = $this->container->make(ltrim($class, '\\')); } null return $this->controller; } null /** * Get the controller class used for the route. * * @return string|null */ public function getControllerClass() { return $this->isControllerAction() ? $this->parseControllerCallback()[0] : null; } abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 270 runController Illuminate\Routing\Route protected function isSerializedClosure() { return RouteAction::containsSerializedClosure($this->action); } null /** * Run the route action and return the response. * * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } null /** * Get the controller instance for the route. * * @return mixed * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function getController() { if (! $this->isControllerAction()) { return null;  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 215 run Illuminate\Routing\Route { return RouteAction::parse($this->uri, $action); } null /** * Run the route action and return the response. * * @return mixed */ public function run() { $this->container = $this->container ?: new Container; null try { if ($this->isControllerAction()) { return $this->runController(); } null return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); } } null /** * Checks whether the route's action is a controller. * * @return bool */ protected function isControllerAction()  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 822 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308268.5565 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308268.5567 select * from `b2b_sessions` where `id` = ? limit 1 2.56 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308268.6117 select * from `b2b_users` where `id` = ? limit 1 1.1 mysql 1 1780308268.6267 production null null /home/coroxal/public_html/b2b null 15a6a220-49fc-4ce2-9179-f2902d766df8 null null Laravel Client PHP 13.9.0 8.4.21 Illuminate\Contracts\Container\BindingResolutionException 1780308268 Target class [App\Http\Controllers\Web\DettagliMagazzino] does not exist.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Container/Container.php 1127 build Illuminate\Container\Container // hand back the results of the functions, which allows functions to be // used as resolvers for more fine-tuned resolution of these objects. if ($concrete instanceof Closure) { $this->buildStack[] = spl_object_hash($concrete); null try { return $concrete($this, $this->getLastParameterOverride()); } finally { array_pop($this->buildStack); } } null try { $reflector = new ReflectionClass($concrete); } catch (ReflectionException $e) { throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e); } null // 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); } null if (is_a($concrete, SelfBuilding::class, true) && ! in_array($concrete, $this->buildStack, true)) { return $this->buildSelfBuildingInstance($concrete, $reflector); } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Container/Container.php 936 resolve Illuminate\Container\Container // so the developer can keep using the same objects instance every time. if (isset($this->instances[$abstract]) && ! $needsContextualBuild) { return $this->instances[$abstract]; } null $this->with[] = $parameters; null if (is_null($concrete)) { $concrete = $this->getConcrete($abstract); } null // 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); null // 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); } null // 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 an // entirely new instance of an object on each subsequent request for it. if ($this->isShared($abstract) && ! $needsContextualBuild) { $this->instances[$abstract] = $object; concrete App\Http\Controllers\Web\DettagliMagazzino string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Application.php 1078 resolve Illuminate\Foundation\Application * * @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) * * @throws \Illuminate\Contracts\Container\BindingResolutionException * @throws \Illuminate\Contracts\Container\CircularDependencyException */ protected function resolve($abstract, $parameters = [], $raiseEvents = true) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); null return parent::resolve($abstract, $parameters, $raiseEvents); } null /** * 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])) { $this->loadDeferredProvider($abstract); } } abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false raiseEvents true bool false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Container/Container.php 864 make Illuminate\Container\Container return $this->make($abstract, $parameters); } null /** * Resolve the given type from the container. * * @template TClass of object * * @param  string|class-string<TClass>  $abstract * @return ($abstract is class-string<TClass> ? TClass : mixed) * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { return $this->resolve($abstract, $parameters); } null /** * {@inheritdoc} * * @template TClass of object * * @param  string|class-string<TClass>  $id * @return ($id is class-string<TClass> ? TClass : mixed) * * @throws \Illuminate\Contracts\Container\CircularDependencyException * @throws \Illuminate\Container\EntryNotFoundException */ public function get(string $id) abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false raiseEvents true bool false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Application.php 1058 make Illuminate\Foundation\Application /** * Resolve the given type from the container. * * @template TClass of object * * @param  string|class-string<TClass>  $abstract * @param  array  $parameters * @return ($abstract is class-string<TClass> ? TClass : mixed) * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); null return parent::make($abstract, $parameters); } null /** * 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) * * @throws \Illuminate\Contracts\Container\BindingResolutionException * @throws \Illuminate\Contracts\Container\CircularDependencyException abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 290 getController Illuminate\Routing\Route * Get the controller instance for the route. * * @return mixed * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function getController() { if (! $this->isControllerAction()) { return null; } null if (! $this->controller) { $class = $this->getControllerClass(); null $this->controller = $this->container->make(ltrim($class, '\\')); } null return $this->controller; } null /** * Get the controller class used for the route. * * @return string|null */ public function getControllerClass() { return $this->isControllerAction() ? $this->parseControllerCallback()[0] : null; } abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 270 runController Illuminate\Routing\Route protected function isSerializedClosure() { return RouteAction::containsSerializedClosure($this->action); } null /** * Run the route action and return the response. * * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } null /** * Get the controller instance for the route. * * @return mixed * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function getController() { if (! $this->isControllerAction()) { return null;  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 215 run Illuminate\Routing\Route { return RouteAction::parse($this->uri, $action); } null /** * Run the route action and return the response. * * @return mixed */ public function run() { $this->container = $this->container ?: new Container; null try { if ($this->isControllerAction()) { return $this->runController(); } null return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); } } null /** * Checks whether the route's action is a controller. * * @return bool */ protected function isControllerAction()  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 822 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308268.5565 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308268.5567 select * from `b2b_sessions` where `id` = ? limit 1 2.56 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308268.6117 select * from `b2b_users` where `id` = ? limit 1 1.1 mysql 1 1780308268.6267 production null null /home/coroxal/public_html/b2b null 15a6a220-49fc-4ce2-9179-f2902d766df8 null null phpstorm auto false /home/coroxal/public_html/b2b null true false / Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Container/Container.php 1127 build Illuminate\Container\Container // hand back the results of the functions, which allows functions to be // used as resolvers for more fine-tuned resolution of these objects. if ($concrete instanceof Closure) { $this->buildStack[] = spl_object_hash($concrete); null try { return $concrete($this, $this->getLastParameterOverride()); } finally { array_pop($this->buildStack); } } null try { $reflector = new ReflectionClass($concrete); } catch (ReflectionException $e) { throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e); } null // 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); } null if (is_a($concrete, SelfBuilding::class, true) && ! in_array($concrete, $this->buildStack, true)) { return $this->buildSelfBuildingInstance($concrete, $reflector); } null  false vendor/laravel/framework/src/Illuminate/Container/Container.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Container/Container.php 936 resolve Illuminate\Container\Container // so the developer can keep using the same objects instance every time. if (isset($this->instances[$abstract]) && ! $needsContextualBuild) { return $this->instances[$abstract]; } null $this->with[] = $parameters; null if (is_null($concrete)) { $concrete = $this->getConcrete($abstract); } null // 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); null // 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); } null // 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 an // entirely new instance of an object on each subsequent request for it. if ($this->isShared($abstract) && ! $needsContextualBuild) { $this->instances[$abstract] = $object; concrete App\Http\Controllers\Web\DettagliMagazzino string false false false false vendor/laravel/framework/src/Illuminate/Container/Container.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Application.php 1078 resolve Illuminate\Foundation\Application * * @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) * * @throws \Illuminate\Contracts\Container\BindingResolutionException * @throws \Illuminate\Contracts\Container\CircularDependencyException */ protected function resolve($abstract, $parameters = [], $raiseEvents = true) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); null return parent::resolve($abstract, $parameters, $raiseEvents); } null /** * 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])) { $this->loadDeferredProvider($abstract); } } abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false raiseEvents true bool false false false false vendor/laravel/framework/src/Illuminate/Foundation/Application.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Container/Container.php 864 make Illuminate\Container\Container return $this->make($abstract, $parameters); } null /** * Resolve the given type from the container. * * @template TClass of object * * @param  string|class-string<TClass>  $abstract * @return ($abstract is class-string<TClass> ? TClass : mixed) * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { return $this->resolve($abstract, $parameters); } null /** * {@inheritdoc} * * @template TClass of object * * @param  string|class-string<TClass>  $id * @return ($id is class-string<TClass> ? TClass : mixed) * * @throws \Illuminate\Contracts\Container\CircularDependencyException * @throws \Illuminate\Container\EntryNotFoundException */ public function get(string $id) abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false raiseEvents true bool false false false false vendor/laravel/framework/src/Illuminate/Container/Container.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Application.php 1058 make Illuminate\Foundation\Application /** * Resolve the given type from the container. * * @template TClass of object * * @param  string|class-string<TClass>  $abstract * @param  array  $parameters * @return ($abstract is class-string<TClass> ? TClass : mixed) * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function make($abstract, array $parameters = []) { $this->loadDeferredProviderIfNeeded($abstract = $this->getAlias($abstract)); null return parent::make($abstract, $parameters); } null /** * 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) * * @throws \Illuminate\Contracts\Container\BindingResolutionException * @throws \Illuminate\Contracts\Container\CircularDependencyException abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false false vendor/laravel/framework/src/Illuminate/Foundation/Application.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 290 getController Illuminate\Routing\Route * Get the controller instance for the route. * * @return mixed * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function getController() { if (! $this->isControllerAction()) { return null; } null if (! $this->controller) { $class = $this->getControllerClass(); null $this->controller = $this->container->make(ltrim($class, '\\')); } null return $this->controller; } null /** * Get the controller class used for the route. * * @return string|null */ public function getControllerClass() { return $this->isControllerAction() ? $this->parseControllerCallback()[0] : null; } abstract App\Http\Controllers\Web\DettagliMagazzino string false false false parameters  array false false false false vendor/laravel/framework/src/Illuminate/Routing/Route.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 270 runController Illuminate\Routing\Route protected function isSerializedClosure() { return RouteAction::containsSerializedClosure($this->action); } null /** * Run the route action and return the response. * * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } null /** * Get the controller instance for the route. * * @return mixed * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function getController() { if (! $this->isControllerAction()) { return null;  false vendor/laravel/framework/src/Illuminate/Routing/Route.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 215 run Illuminate\Routing\Route { return RouteAction::parse($this->uri, $action); } null /** * Run the route action and return the response. * * @return mixed */ public function run() { $this->container = $this->container ?: new Container; null try { if ($this->isControllerAction()) { return $this->runController(); } null return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); } } null /** * Checks whether the route's action is a controller. * * @return bool */ protected function isControllerAction()  false vendor/laravel/framework/src/Illuminate/Routing/Route.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 822 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null  false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/boost/src/Middleware/InjectBoost.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/CheckIfBanned.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/SetLocale.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/VerifyInstallation.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true public/index.php http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    select * from `b2b_sessions` where `id` = ? limit 1 2.56 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308268.6117 select * from `b2b_users` where `id` = ? limit 1 1.1 mysql 1 1780308268.6267  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308268.5565 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308268.5567 null b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 8.4.21 13.9.0 en false true production 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web null null null null null null  web http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Contracts\Container\BindingResolutionException Target class [App\Http\Controllers\Web\DettagliMagazzino] does not exist. /home/coroxal/public_html/b2b null 8.4.21 13.9.0 Flare production Illuminate\Container\Container build    {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:04:30.428Z"} 
[2026-06-01 10:05:11] production.INFO: %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:05:10.940Z"} 
[2026-06-01 10:05:11] production.DEBUG: Laravel Client PHP 13.9.0 8.4.21 InvalidArgumentException 1780308309 View [utenti.app] not found.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php 138 findInPaths Illuminate\View\FileViewFinder * * @throws \InvalidArgumentException */ protected function findInPaths($name, $paths) { foreach ((array) $paths as $path) { foreach ($this->getPossibleViewFiles($name) as $file) { $viewPath = $path.'/'.$file; null if (strlen($viewPath) < (PHP_MAXPATHLEN - 1) && $this->files->exists($viewPath)) { return $viewPath; } } } null throw new InvalidArgumentException("View [{$name}] not found."); } null /** * Get an array of possible view files. * * @param  string  $name * @return string[] */ protected function getPossibleViewFiles($name) { return array_map(fn ($extension) => str_replace('.', '/', $name).'.'.$extension, $this->extensions); } null /**  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php 78 find Illuminate\View\FileViewFinder * Get the fully-qualified location of the view. * * @param  string  $view * @return string */ public function find($view) { if (isset($this->views[$view])) { return $this->views[$view]; } null if ($this->hasHintInformation($view = trim($view))) { return $this->views[$view] = $this->findNamespacedView($view); } null return $this->views[$view] = $this->findInPaths($view, $this->paths); } null /** * Get the path to a template with a named path. * * @param  string  $name * @return string */ protected function findNamespacedView($name) { [$namespace, $view] = $this->parseNamespaceSegments($name); null return $this->findInPaths($view, $this->hints[$namespace]); } name utenti.app string false false false paths /home/coroxal/public_html/b2b/resources/views array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Factory.php 150 make Illuminate\View\Factory return tap($this->viewInstance($path, $path, $data), function ($view) { $this->callCreator($view); }); } null /** * Get the evaluated view contents for the given view. * * @param  string  $view * @param  \Illuminate\Contracts\Support\Arrayable|array  $data * @param  array  $mergeData * @return \Illuminate\Contracts\View\View */ public function make($view, $data = [], $mergeData = []) { $path = $this->finder->find( $view = $this->normalizeName($view) ); null // Next, we will create the view instance and call the view creator for the view // which can set any data, etc. Then we will return the view instance back to // the caller for rendering or performing other view manipulations on this. $data = array_merge($mergeData, $this->parseData($data)); null return tap($this->viewInstance($view, $path, $data), function ($view) { $this->callCreator($view); }); } null /** view utenti.app string false false false false /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('utenti.app') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null view utenti.app string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false mergeData  array false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php <pre class=sf-dump id=sf-dump-1461793651 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1461793651", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308309.8023 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308309.8024 select * from `b2b_sessions` where `id` = ? limit 1 2.78 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308309.8794 select * from `b2b_users` where `id` = ? limit 1 1.37 mysql 1 1780308309.8937 production null null /home/coroxal/public_html/b2b null a15bd56e-89f5-4347-b576-38ee8f7d400f null null Laravel Client PHP 13.9.0 8.4.21 InvalidArgumentException 1780308309 View [utenti.app] not found.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php 138 findInPaths Illuminate\View\FileViewFinder * * @throws \InvalidArgumentException */ protected function findInPaths($name, $paths) { foreach ((array) $paths as $path) { foreach ($this->getPossibleViewFiles($name) as $file) { $viewPath = $path.'/'.$file; null if (strlen($viewPath) < (PHP_MAXPATHLEN - 1) && $this->files->exists($viewPath)) { return $viewPath; } } } null throw new InvalidArgumentException("View [{$name}] not found."); } null /** * Get an array of possible view files. * * @param  string  $name * @return string[] */ protected function getPossibleViewFiles($name) { return array_map(fn ($extension) => str_replace('.', '/', $name).'.'.$extension, $this->extensions); } null /**  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php 78 find Illuminate\View\FileViewFinder * Get the fully-qualified location of the view. * * @param  string  $view * @return string */ public function find($view) { if (isset($this->views[$view])) { return $this->views[$view]; } null if ($this->hasHintInformation($view = trim($view))) { return $this->views[$view] = $this->findNamespacedView($view); } null return $this->views[$view] = $this->findInPaths($view, $this->paths); } null /** * Get the path to a template with a named path. * * @param  string  $name * @return string */ protected function findNamespacedView($name) { [$namespace, $view] = $this->parseNamespaceSegments($name); null return $this->findInPaths($view, $this->hints[$namespace]); } name utenti.app string false false false paths /home/coroxal/public_html/b2b/resources/views array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Factory.php 150 make Illuminate\View\Factory return tap($this->viewInstance($path, $path, $data), function ($view) { $this->callCreator($view); }); } null /** * Get the evaluated view contents for the given view. * * @param  string  $view * @param  \Illuminate\Contracts\Support\Arrayable|array  $data * @param  array  $mergeData * @return \Illuminate\Contracts\View\View */ public function make($view, $data = [], $mergeData = []) { $path = $this->finder->find( $view = $this->normalizeName($view) ); null // Next, we will create the view instance and call the view creator for the view // which can set any data, etc. Then we will return the view instance back to // the caller for rendering or performing other view manipulations on this. $data = array_merge($mergeData, $this->parseData($data)); null return tap($this->viewInstance($view, $path, $data), function ($view) { $this->callCreator($view); }); } null /** view utenti.app string false false false false /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('utenti.app') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null view utenti.app string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false mergeData  array false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php <pre class=sf-dump id=sf-dump-1461793651 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1461793651", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308309.8023 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308309.8024 select * from `b2b_sessions` where `id` = ? limit 1 2.78 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308309.8794 select * from `b2b_users` where `id` = ? limit 1 1.37 mysql 1 1780308309.8937 production null null /home/coroxal/public_html/b2b null a15bd56e-89f5-4347-b576-38ee8f7d400f null null phpstorm auto false /home/coroxal/public_html/b2b null true false / Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php 138 findInPaths Illuminate\View\FileViewFinder * * @throws \InvalidArgumentException */ protected function findInPaths($name, $paths) { foreach ((array) $paths as $path) { foreach ($this->getPossibleViewFiles($name) as $file) { $viewPath = $path.'/'.$file; null if (strlen($viewPath) < (PHP_MAXPATHLEN - 1) && $this->files->exists($viewPath)) { return $viewPath; } } } null throw new InvalidArgumentException("View [{$name}] not found."); } null /** * Get an array of possible view files. * * @param  string  $name * @return string[] */ protected function getPossibleViewFiles($name) { return array_map(fn ($extension) => str_replace('.', '/', $name).'.'.$extension, $this->extensions); } null /**  false vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php 78 find Illuminate\View\FileViewFinder * Get the fully-qualified location of the view. * * @param  string  $view * @return string */ public function find($view) { if (isset($this->views[$view])) { return $this->views[$view]; } null if ($this->hasHintInformation($view = trim($view))) { return $this->views[$view] = $this->findNamespacedView($view); } null return $this->views[$view] = $this->findInPaths($view, $this->paths); } null /** * Get the path to a template with a named path. * * @param  string  $name * @return string */ protected function findNamespacedView($name) { [$namespace, $view] = $this->parseNamespaceSegments($name); null return $this->findInPaths($view, $this->hints[$namespace]); } name utenti.app string false false false paths /home/coroxal/public_html/b2b/resources/views array false false false false vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Factory.php 150 make Illuminate\View\Factory return tap($this->viewInstance($path, $path, $data), function ($view) { $this->callCreator($view); }); } null /** * Get the evaluated view contents for the given view. * * @param  string  $view * @param  \Illuminate\Contracts\Support\Arrayable|array  $data * @param  array  $mergeData * @return \Illuminate\Contracts\View\View */ public function make($view, $data = [], $mergeData = []) { $path = $this->finder->find( $view = $this->normalizeName($view) ); null // Next, we will create the view instance and call the view creator for the view // which can set any data, etc. Then we will return the view instance back to // the caller for rendering or performing other view manipulations on this. $data = array_merge($mergeData, $this->parseData($data)); null return tap($this->viewInstance($view, $path, $data), function ($view) { $this->callCreator($view); }); } null /** view utenti.app string false false false false vendor/laravel/framework/src/Illuminate/View/Factory.php /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('utenti.app') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null view utenti.app string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false mergeData  array false false false true resources/views/giacenza/index.blade.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/Authenticate.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/boost/src/Middleware/InjectBoost.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/CheckIfBanned.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/SetLocale.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/VerifyInstallation.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true public/index.php http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    select * from `b2b_sessions` where `id` = ? limit 1 2.78 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308309.8794 select * from `b2b_users` where `id` = ? limit 1 1.37 mysql 1 1780308309.8937  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308309.8023 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308309.8024 null b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 8.4.21 13.9.0 en false true production 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth null null /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php <pre class=sf-dump id=sf-dump-1461793651 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1461793651", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://b2b.coroxal.it/public/giacenza-magazzino InvalidArgumentException View [utenti.app] not found. /home/coroxal/public_html/b2b null 8.4.21 13.9.0 Flare production Illuminate\View\FileViewFinder findInPaths    {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:05:10.950Z"} 
[2026-06-01 10:06:15] production.INFO: %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:06:14.824Z"} 
[2026-06-01 10:06:15] production.DEBUG: Laravel Client PHP 13.9.0 8.4.21 Illuminate\Foundation\MixFileNotFoundException 1780308373 Unable to locate Mix file: /assets/css/vendor.css.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/vendor.css string false false false manifestDirectory null string false false false false /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/vendor.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main> path assets/css/vendor.css string false false false manifestDirectory null string false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('layouts.utenti') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null callback null null false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-91563520 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-91563520", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308373.8577 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308373.8578 select * from `b2b_sessions` where `id` = ? limit 1 2.37 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308373.9119 select * from `b2b_users` where `id` = ? limit 1 1.07 mysql 1 1780308373.9222 production null null /home/coroxal/public_html/b2b null 06f3836f-4232-40f8-9bad-7ded401adc0a null null Laravel Client PHP 13.9.0 8.4.21 Illuminate\Foundation\MixFileNotFoundException 1780308373 Unable to locate Mix file: /assets/css/vendor.css.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/vendor.css string false false false manifestDirectory null string false false false false /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/vendor.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main> path assets/css/vendor.css string false false false manifestDirectory null string false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('layouts.utenti') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null callback null null false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-91563520 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-91563520", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308373.8577 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308373.8578 select * from `b2b_sessions` where `id` = ? limit 1 2.37 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308373.9119 select * from `b2b_users` where `id` = ? limit 1 1.07 mysql 1 1780308373.9222 production null null /home/coroxal/public_html/b2b null 06f3836f-4232-40f8-9bad-7ded401adc0a null null phpstorm auto false /home/coroxal/public_html/b2b null true false / Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false vendor/laravel/framework/src/Illuminate/Foundation/Mix.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/vendor.css string false false false manifestDirectory null string false false false false vendor/laravel/framework/src/Illuminate/Foundation/helpers.php /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/vendor.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main> path assets/css/vendor.css string false false false manifestDirectory null string false false false true resources/views/layouts/utenti.blade.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('layouts.utenti') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null callback null null false false false true resources/views/giacenza/index.blade.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/Authenticate.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/boost/src/Middleware/InjectBoost.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/CheckIfBanned.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/SetLocale.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/VerifyInstallation.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true public/index.php http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    select * from `b2b_sessions` where `id` = ? limit 1 2.37 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308373.9119 select * from `b2b_users` where `id` = ? limit 1 1.07 mysql 1 1780308373.9222  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308373.8577 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308373.8578 null b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 8.4.21 13.9.0 en false true production 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth null null /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-91563520 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-91563520", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Foundation\MixFileNotFoundException Unable to locate Mix file: /assets/css/vendor.css. /home/coroxal/public_html/b2b null 8.4.21 13.9.0 Flare production Illuminate\Foundation\Mix __invoke    {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:06:14.832Z"} 
[2026-06-01 10:13:58] production.INFO: %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:13:58.161Z"} 
[2026-06-01 10:13:58] production.DEBUG: Laravel Client PHP 13.9.0 8.4.21 Illuminate\Foundation\MixFileNotFoundException 1780308837 Unable to locate Mix file: /assets/css/vendor.css.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/vendor.css string false false false manifestDirectory null string false false false false /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/vendor.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main> path assets/css/vendor.css string false false false manifestDirectory null string false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('layouts.utenti') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null callback null null false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-1496388806 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1359</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1496388806", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308837.2384 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308837.2386 select * from `b2b_sessions` where `id` = ? limit 1 2.89 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308837.312 delete from `b2b_sessions` where `last_activity` <= ? 0.43 mysql 1780301637 1780308837.3138 select * from `b2b_users` where `id` = ? limit 1 1.04 mysql 1 1780308837.3239 production null null /home/coroxal/public_html/b2b null 1d44bd82-c7be-423f-91e6-d3f3eb65b85b null null Laravel Client PHP 13.9.0 8.4.21 Illuminate\Foundation\MixFileNotFoundException 1780308837 Unable to locate Mix file: /assets/css/vendor.css.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/vendor.css string false false false manifestDirectory null string false false false false /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/vendor.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main> path assets/css/vendor.css string false false false manifestDirectory null string false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('layouts.utenti') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null callback null null false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-1496388806 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1359</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1496388806", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308837.2384 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308837.2386 select * from `b2b_sessions` where `id` = ? limit 1 2.89 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308837.312 delete from `b2b_sessions` where `last_activity` <= ? 0.43 mysql 1780301637 1780308837.3138 select * from `b2b_users` where `id` = ? limit 1 1.04 mysql 1 1780308837.3239 production null null /home/coroxal/public_html/b2b null 1d44bd82-c7be-423f-91e6-d3f3eb65b85b null null phpstorm auto false /home/coroxal/public_html/b2b null true false / Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false vendor/laravel/framework/src/Illuminate/Foundation/Mix.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/vendor.css string false false false manifestDirectory null string false false false false vendor/laravel/framework/src/Illuminate/Foundation/helpers.php /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/vendor.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main> path assets/css/vendor.css string false false false manifestDirectory null string false false false true resources/views/layouts/utenti.blade.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('layouts.utenti') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null callback null null false false false true resources/views/giacenza/index.blade.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/Authenticate.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/boost/src/Middleware/InjectBoost.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/CheckIfBanned.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/SetLocale.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/VerifyInstallation.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true public/index.php http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    select * from `b2b_sessions` where `id` = ? limit 1 2.89 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308837.312 delete from `b2b_sessions` where `last_activity` <= ? 0.43 mysql 1780301637 1780308837.3138 select * from `b2b_users` where `id` = ? limit 1 1.04 mysql 1 1780308837.3239  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308837.2384 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308837.2386 null b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 8.4.21 13.9.0 en false true production 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth null null /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-1496388806 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1359</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1496388806", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Foundation\MixFileNotFoundException Unable to locate Mix file: /assets/css/vendor.css. /home/coroxal/public_html/b2b null 8.4.21 13.9.0 Flare production Illuminate\Foundation\Mix __invoke    {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:13:58.169Z"} 
[2026-06-01 10:16:07] production.INFO: %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:16:07.258Z"} 
[2026-06-01 10:16:07] production.DEBUG: Laravel Client PHP 13.9.0 8.4.21 Error 1780308966 Call to undefined function assets()    /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ assets('assets/css/vendor.css') }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main>  true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-691434993 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-691434993", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308966.4168 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308966.4169 select * from `b2b_sessions` where `id` = ? limit 1 2.1 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308966.4714 select * from `b2b_users` where `id` = ? limit 1 0.9 mysql 1 1780308966.4814 production null null /home/coroxal/public_html/b2b null 3a09d124-235c-4417-a55e-6614548b9b0b null null Laravel Client PHP 13.9.0 8.4.21 Error 1780308966 Call to undefined function assets()    /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ assets('assets/css/vendor.css') }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main>  true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-691434993 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-691434993", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308966.4168 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308966.4169 select * from `b2b_sessions` where `id` = ? limit 1 2.1 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308966.4714 select * from `b2b_users` where `id` = ? limit 1 0.9 mysql 1 1780308966.4814 production null null /home/coroxal/public_html/b2b null 3a09d124-235c-4417-a55e-6614548b9b0b null null phpstorm auto false /home/coroxal/public_html/b2b null true false / Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ assets('assets/css/vendor.css') }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main>  true resources/views/layouts/utenti.blade.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/Authenticate.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/boost/src/Middleware/InjectBoost.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/CheckIfBanned.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/SetLocale.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/VerifyInstallation.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true public/index.php http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    select * from `b2b_sessions` where `id` = ? limit 1 2.1 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308966.4714 select * from `b2b_users` where `id` = ? limit 1 0.9 mysql 1 1780308966.4814  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308966.4168 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308966.4169 null b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 8.4.21 13.9.0 en false true production 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth null null /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-691434993 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-691434993", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://b2b.coroxal.it/public/giacenza-magazzino Error Call to undefined function assets() /home/coroxal/public_html/b2b null 8.4.21 13.9.0 Flare production null require    {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:16:07.265Z"} 
[2026-06-01 10:16:25] production.INFO: %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:16:24.960Z"} 
[2026-06-01 10:16:25] production.DEBUG: Laravel Client PHP 13.9.0 8.4.21 Illuminate\Foundation\MixFileNotFoundException 1780308984 Unable to locate Mix file: /assets/css/app.css.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/app.css string false false false manifestDirectory null string false false false false /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 22 require null <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ asset('assets/css/vendor.css') }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main> </div> path assets/css/app.css string false false false manifestDirectory null string false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('layouts.utenti') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null callback null null false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-936170748 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-936170748", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308984.0626 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308984.0627 select * from `b2b_sessions` where `id` = ? limit 1 2.86 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308984.1187 select * from `b2b_users` where `id` = ? limit 1 0.87 mysql 1 1780308984.133 production null null /home/coroxal/public_html/b2b null 03d3dcc6-7770-41f0-9d89-04a4b858b844 null null Laravel Client PHP 13.9.0 8.4.21 Illuminate\Foundation\MixFileNotFoundException 1780308984 Unable to locate Mix file: /assets/css/app.css.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/app.css string false false false manifestDirectory null string false false false false /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 22 require null <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ asset('assets/css/vendor.css') }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main> </div> path assets/css/app.css string false false false manifestDirectory null string false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('layouts.utenti') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null callback null null false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-936170748 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-936170748", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308984.0626 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308984.0627 select * from `b2b_sessions` where `id` = ? limit 1 2.86 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308984.1187 select * from `b2b_users` where `id` = ? limit 1 0.87 mysql 1 1780308984.133 production null null /home/coroxal/public_html/b2b null 03d3dcc6-7770-41f0-9d89-04a4b858b844 null null phpstorm auto false /home/coroxal/public_html/b2b null true false / Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false vendor/laravel/framework/src/Illuminate/Foundation/Mix.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/app.css string false false false manifestDirectory null string false false false false vendor/laravel/framework/src/Illuminate/Foundation/helpers.php /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php 22 require null <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ asset('assets/css/vendor.css') }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> <div class="container-fluid"> <div class="row"> <div class="content-page"> <main role="main" class="px-4"> @yield('content') </main> </div> path assets/css/app.css string false false false manifestDirectory null string false false false true resources/views/layouts/utenti.blade.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/d028935c591d814318e410a478617eca.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php 23 require null @extends('layouts.utenti') null @section('page-title', __('Users')) @section('page-heading', __('Users')) null @section('breadcrumbs') <li class="breadcrumb-item active"> @lang('Users') </li> @stop null @section('content') null @include('partials.messages') null <div class="card"> </div> null @stop null @section('scripts') null @stop null callback null null false false false true resources/views/giacenza/index.blade.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/e349f6d03531b13cfa8c821964a6e064.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/giacenza/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/Authenticate.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/boost/src/Middleware/InjectBoost.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/CheckIfBanned.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/SetLocale.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/VerifyInstallation.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true public/index.php http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    select * from `b2b_sessions` where `id` = ? limit 1 2.86 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780308984.1187 select * from `b2b_users` where `id` = ? limit 1 0.87 mysql 1 1780308984.133  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780308984.0626 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780308984.0627 null b2b.coroxal.it keep-alive no-cache no-cache 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 8.4.21 13.9.0 en false true production 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth null null /home/coroxal/public_html/b2b/resources/views/layouts/utenti.blade.php <pre class=sf-dump id=sf-dump-936170748 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1360</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-936170748", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Foundation\MixFileNotFoundException Unable to locate Mix file: /assets/css/app.css. /home/coroxal/public_html/b2b null 8.4.21 13.9.0 Flare production Illuminate\Foundation\Mix __invoke    {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:16:24.965Z"} 
[2026-06-01 10:26:29] production.INFO: %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold {"url":"http://b2b.coroxal.it/public/","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:26:28.880Z"} 
[2026-06-01 10:26:29] production.DEBUG: Laravel Client PHP 13.9.0 8.4.21 Illuminate\Foundation\MixFileNotFoundException 1780309587 Unable to locate Mix file: /assets/css/vendor.css.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/vendor.css string false false false manifestDirectory null string false false false false /home/coroxal/public_html/b2b/resources/views/layouts/app.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/vendor.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> @include('partials.navbar') null <div class="container-fluid"> <div class="row"> @include('partials.sidebar.main') null path assets/css/vendor.css string false false false manifestDirectory null string false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/ee1443fe6cd8976456d861abb24adee4.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/ee1443fe6cd8976456d861abb24adee4.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Support\Collection) object (App\Support\Plugins\Dashboard\Widgets\LatestRegistrations) null array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/ee1443fe6cd8976456d861abb24adee4.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Support\Collection) object (App\Support\Plugins\Dashboard\Widgets\LatestRegistrations) null array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/app.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Support\Collection) object (App\Support\Plugins\Dashboard\Widgets\LatestRegistrations) null array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/resources/views/dashboard/index.blade.php 35 require null <li class="breadcrumb-item active"> @lang('Dashboard') </li> @stop null @section('content') @include('partials.messages') null <div class="row"> @foreach (\Vanguard\Plugins\Vanguard::availableWidgets(auth()->user()) as $widget) @if ($widget->width) <div class="col-md-{{ $widget->width }}"> @endif {!! app()->call([$widget, 'render']) !!} @if($widget->width) </div> @endif @endforeach </div> null @stop null @section('scripts') @foreach (\Vanguard\Plugins\Vanguard::availableWidgets(auth()->user()) as $widget) @if (method_exists($widget, 'scripts')) {!! app()->call([$widget, 'scripts']) !!} @endif @endforeach @stop null callback null null false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/ca79f9b041847137c7ee518271bb4e3b.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/ca79f9b041847137c7ee518271bb4e3b.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/ca79f9b041847137c7ee518271bb4e3b.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/dashboard/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/ForcePasswordChange.php 22 handle App\Http\Middleware\ForcePasswordChange use App\Support\Authorization\PasswordChangeManager; use Closure; use Illuminate\Http\Request; null class ForcePasswordChange { public function __construct(private readonly PasswordChangeManager $forcePasswordChange) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if (! $this->forcePasswordChange->isPasswordChangeForcedForUser($request->user())) { return $next($request); } null if (in_array($request->route()->getName(), ['profile', 'profile.update.login-details'])) { return $next($request); } null return $request->expectsJson() ? abort(403, __('Before continuing please update your password and set a new one.')) : redirect(route('profile')); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/EnsureUserIsApproved.php 26 handle App\Http\Middleware\EnsureUserIsApproved <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Redirect; use Illuminate\Support\Facades\URL; null class EnsureUserIsApproved { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isWaitingApproval()) { return $request->expectsJson() ? abort(403, __('Your account is waiting approval from administrators.')) : Redirect::guest(URL::route('approval.notice')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php 41 handle Illuminate\Auth\Middleware\EnsureEmailIsVerified * @param  string  $route * @return string */ public static function redirectTo($route) { return static::class.':'.$route; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string|null  $redirectToRoute * @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse|null */ public function handle($request, Closure $next, $redirectToRoute = null) { if (! $request->user() || ($request->user() instanceof MustVerifyEmail && ! $request->user()->hasVerifiedEmail())) { return $request->expectsJson() ? abort(403, 'Your email address is not verified.') : Redirect::guest(URL::route($redirectToRoute ?: 'verification.notice')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false redirectToRoute null null false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/ null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 dashboard  App\Http\Controllers\Web\DashboardController@index App\Http\Middleware\VerifyInstallation web auth verified approved password-change 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 1 Admin Admin System administrator. false 2026-06-01T09:14:56.000000Z 2026-06-01T09:14:56.000000Z 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/layouts/app.blade.php <pre class=sf-dump id=sf-dump-1636910813 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1342</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1636910813", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1795498633 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\Collection</span> {<a class=sf-dump-ref>#1832</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:6</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\TotalUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">TotalUsers</span></span> {<a class=sf-dump-ref>#1135</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a> &#8230;2}
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\NewUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">NewUsers</span></span> {<a class=sf-dump-ref>#1137</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>2</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\BannedUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">BannedUsers</span></span> {<a class=sf-dump-ref>#1158</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>3</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\UnconfirmedUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">UnconfirmedUsers</span></span> {<a class=sf-dump-ref>#1159</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>4</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\RegistrationHistory
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">RegistrationHistory</span></span> {<a class=sf-dump-ref>#1160</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>8</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">usersPerMonth</span>: <span class=sf-dump-note>array:13</span> [ &#8230;13]
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>5</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\LatestRegistrations
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">LatestRegistrations</span></span> {<a class=sf-dump-ref>#1161</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>4</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1795498633", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-100996570 data-indent-pad="  "><span class=sf-dump-note>App\Support\Plugins\Dashboard\Widgets\LatestRegistrations</span> {<a class=sf-dump-ref>#1161</a><samp data-depth=1 class=sf-dump-expanded>
  +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>4</span>"
  #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
  #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref>#1138</a><samp data-depth=2 class=sf-dump-compact>
    -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Repositories\User\EloquentUser`">avatarManager</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Services\Upload\UserAvatarManager
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Services\Upload</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">UserAvatarManager</span></span> {<a class=sf-dump-ref>#1144</a><samp data-depth=3 class=sf-dump-compact>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Services\Upload\UserAvatarManager`">fs</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Illuminate\Filesystem\LocalFilesystemAdapter
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Illuminate\Filesystem</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">LocalFilesystemAdapter</span></span> {<a class=sf-dump-ref>#1152</a> &#8230;10}
      #<span class=sf-dump-protected title="Protected property">disk</span>: "<span class=sf-dump-str title="6 characters">public</span>"
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Services\Upload\UserAvatarManager`">imageManager</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Intervention\Image\ImageManager
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Intervention\Image</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">ImageManager</span></span> {<a class=sf-dump-ref>#1142</a> &#8230;1}
    </samp>}
    -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Repositories\User\EloquentUser`">roles</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\Role\EloquentRole
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\Role</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentRole</span></span> {<a class=sf-dump-ref>#1139</a>}
  </samp>}
</samp>}
</pre><script>Sfdump("sf-dump-100996570", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-603877498 data-indent-pad="  "><span class=sf-dump-const>null</span>
</pre><script>Sfdump("sf-dump-603877498", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780309587.8033 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780309587.8035 select * from `b2b_sessions` where `id` = ? limit 1 2.35 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780309587.8626 select * from `b2b_users` where `id` = ? limit 1 1.2 mysql 1 1780309587.8766 select * from `b2b_roles` where `b2b_roles`.`id` = ? limit 1 1.03 mysql 1 1780309587.8903 select `b2b_permissions`.*, `b2b_permission_role`.`role_id` as `pivot_role_id`, `b2b_permission_role`.`permission_id` as `pivot_permission_id` from `b2b_permissions` inner join `b2b_permission_role` on `b2b_permissions`.`id` = `b2b_permission_role`.`permission_id` where `b2b_permission_role`.`role_id` = ? 1.63 mysql 1 1780309587.8987 select count(*) as aggregate from `b2b_users` 0.51 mysql  1780309587.9054 select count(*) as aggregate from `b2b_users` where `created_at` between ? and ? 0.66 mysql 2026-06-01T00:00:00.000000Z 2026-06-01T10:26:27.905812Z 1780309587.9067 select count(*) as aggregate from `b2b_users` where `status` = ? 0.48 mysql Banned 1780309587.9077 select count(*) as aggregate from `b2b_users` where `status` = ? 0.36 mysql Unconfirmed 1780309587.9084 select `created_at` from `b2b_users` where `created_at` between ? and ? order by `created_at` asc 0.36 mysql 2026-07-01T00:00:00.000000Z 2026-06-30T23:59:59.999999Z 1780309587.9096 select * from `b2b_users` order by `created_at` desc limit 6 0.47 mysql  1780309587.9114 production null null /home/coroxal/public_html/b2b null 9571336d-0f15-4630-a02e-17ec50699877 null null Laravel Client PHP 13.9.0 8.4.21 Illuminate\Foundation\MixFileNotFoundException 1780309588 Unable to locate Mix file: /assets/css/vendor.css.    /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/vendor.css string false false false manifestDirectory null string false false false false /home/coroxal/public_html/b2b/resources/views/layouts/app.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/vendor.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> @include('partials.navbar') null <div class="container-fluid"> <div class="row"> @include('partials.sidebar.main') null path assets/css/vendor.css string false false false manifestDirectory null string false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/ee1443fe6cd8976456d861abb24adee4.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/ee1443fe6cd8976456d861abb24adee4.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Support\Collection) object (App\Support\Plugins\Dashboard\Widgets\LatestRegistrations) null array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/ee1443fe6cd8976456d861abb24adee4.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Support\Collection) object (App\Support\Plugins\Dashboard\Widgets\LatestRegistrations) null array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/app.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Support\Collection) object (App\Support\Plugins\Dashboard\Widgets\LatestRegistrations) null array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/resources/views/dashboard/index.blade.php 35 require null <li class="breadcrumb-item active"> @lang('Dashboard') </li> @stop null @section('content') @include('partials.messages') null <div class="row"> @foreach (\Vanguard\Plugins\Vanguard::availableWidgets(auth()->user()) as $widget) @if ($widget->width) <div class="col-md-{{ $widget->width }}"> @endif {!! app()->call([$widget, 'render']) !!} @if($widget->width) </div> @endif @endforeach </div> null @stop null @section('scripts') @foreach (\Vanguard\Plugins\Vanguard::availableWidgets(auth()->user()) as $widget) @if (method_exists($widget, 'scripts')) {!! app()->call([$widget, 'scripts']) !!} @endif @endforeach @stop null callback null null false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/ca79f9b041847137c7ee518271bb4e3b.php string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/ca79f9b041847137c7ee518271bb4e3b.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/ca79f9b041847137c7ee518271bb4e3b.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/dashboard/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/ForcePasswordChange.php 22 handle App\Http\Middleware\ForcePasswordChange use App\Support\Authorization\PasswordChangeManager; use Closure; use Illuminate\Http\Request; null class ForcePasswordChange { public function __construct(private readonly PasswordChangeManager $forcePasswordChange) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if (! $this->forcePasswordChange->isPasswordChangeForcedForUser($request->user())) { return $next($request); } null if (in_array($request->route()->getName(), ['profile', 'profile.update.login-details'])) { return $next($request); } null return $request->expectsJson() ? abort(403, __('Before continuing please update your password and set a new one.')) : redirect(route('profile')); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/EnsureUserIsApproved.php 26 handle App\Http\Middleware\EnsureUserIsApproved <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Redirect; use Illuminate\Support\Facades\URL; null class EnsureUserIsApproved { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isWaitingApproval()) { return $request->expectsJson() ? abort(403, __('Your account is waiting approval from administrators.')) : Redirect::guest(URL::route('approval.notice')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php 41 handle Illuminate\Auth\Middleware\EnsureEmailIsVerified * @param  string  $route * @return string */ public static function redirectTo($route) { return static::class.':'.$route; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string|null  $redirectToRoute * @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse|null */ public function handle($request, Closure $next, $redirectToRoute = null) { if (! $request->user() || ($request->user() instanceof MustVerifyEmail && ! $request->user()->hasVerifiedEmail())) { return $request->expectsJson() ? abort(403, 'Your email address is not verified.') : Redirect::guest(URL::route($redirectToRoute ?: 'verification.notice')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false redirectToRoute null null false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/ null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 dashboard  App\Http\Controllers\Web\DashboardController@index App\Http\Middleware\VerifyInstallation web auth verified approved password-change 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 1 Admin Admin System administrator. false 2026-06-01T09:14:56.000000Z 2026-06-01T09:14:56.000000Z 8.4.21 13.9.0 en false true production /home/coroxal/public_html/b2b/resources/views/layouts/app.blade.php <pre class=sf-dump id=sf-dump-1636910813 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1342</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1636910813", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1795498633 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\Collection</span> {<a class=sf-dump-ref>#1832</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:6</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\TotalUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">TotalUsers</span></span> {<a class=sf-dump-ref>#1135</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a> &#8230;2}
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\NewUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">NewUsers</span></span> {<a class=sf-dump-ref>#1137</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>2</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\BannedUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">BannedUsers</span></span> {<a class=sf-dump-ref>#1158</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>3</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\UnconfirmedUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">UnconfirmedUsers</span></span> {<a class=sf-dump-ref>#1159</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>4</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\RegistrationHistory
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">RegistrationHistory</span></span> {<a class=sf-dump-ref>#1160</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>8</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">usersPerMonth</span>: <span class=sf-dump-note>array:13</span> [ &#8230;13]
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>5</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\LatestRegistrations
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">LatestRegistrations</span></span> {<a class=sf-dump-ref>#1161</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>4</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1795498633", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-100996570 data-indent-pad="  "><span class=sf-dump-note>App\Support\Plugins\Dashboard\Widgets\LatestRegistrations</span> {<a class=sf-dump-ref>#1161</a><samp data-depth=1 class=sf-dump-expanded>
  +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>4</span>"
  #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
  #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref>#1138</a><samp data-depth=2 class=sf-dump-compact>
    -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Repositories\User\EloquentUser`">avatarManager</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Services\Upload\UserAvatarManager
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Services\Upload</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">UserAvatarManager</span></span> {<a class=sf-dump-ref>#1144</a><samp data-depth=3 class=sf-dump-compact>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Services\Upload\UserAvatarManager`">fs</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Illuminate\Filesystem\LocalFilesystemAdapter
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Illuminate\Filesystem</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">LocalFilesystemAdapter</span></span> {<a class=sf-dump-ref>#1152</a> &#8230;10}
      #<span class=sf-dump-protected title="Protected property">disk</span>: "<span class=sf-dump-str title="6 characters">public</span>"
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Services\Upload\UserAvatarManager`">imageManager</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Intervention\Image\ImageManager
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Intervention\Image</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">ImageManager</span></span> {<a class=sf-dump-ref>#1142</a> &#8230;1}
    </samp>}
    -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Repositories\User\EloquentUser`">roles</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\Role\EloquentRole
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\Role</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentRole</span></span> {<a class=sf-dump-ref>#1139</a>}
  </samp>}
</samp>}
</pre><script>Sfdump("sf-dump-100996570", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-603877498 data-indent-pad="  "><span class=sf-dump-const>null</span>
</pre><script>Sfdump("sf-dump-603877498", {"maxDepth":3,"maxStringLength":160})</script>  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780309587.8033 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780309587.8035 select * from `b2b_sessions` where `id` = ? limit 1 2.35 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780309587.8626 select * from `b2b_users` where `id` = ? limit 1 1.2 mysql 1 1780309587.8766 select * from `b2b_roles` where `b2b_roles`.`id` = ? limit 1 1.03 mysql 1 1780309587.8903 select `b2b_permissions`.*, `b2b_permission_role`.`role_id` as `pivot_role_id`, `b2b_permission_role`.`permission_id` as `pivot_permission_id` from `b2b_permissions` inner join `b2b_permission_role` on `b2b_permissions`.`id` = `b2b_permission_role`.`permission_id` where `b2b_permission_role`.`role_id` = ? 1.63 mysql 1 1780309587.8987 select count(*) as aggregate from `b2b_users` 0.51 mysql  1780309587.9054 select count(*) as aggregate from `b2b_users` where `created_at` between ? and ? 0.66 mysql 2026-06-01T00:00:00.000000Z 2026-06-01T10:26:27.905812Z 1780309587.9067 select count(*) as aggregate from `b2b_users` where `status` = ? 0.48 mysql Banned 1780309587.9077 select count(*) as aggregate from `b2b_users` where `status` = ? 0.36 mysql Unconfirmed 1780309587.9084 select `created_at` from `b2b_users` where `created_at` between ? and ? order by `created_at` asc 0.36 mysql 2026-07-01T00:00:00.000000Z 2026-06-30T23:59:59.999999Z 1780309587.9096 select * from `b2b_users` order by `created_at` desc limit 6 0.47 mysql  1780309587.9114 production null null /home/coroxal/public_html/b2b null 9571336d-0f15-4630-a02e-17ec50699877 null null phpstorm auto false /home/coroxal/public_html/b2b null true false / Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php 60 __invoke Illuminate\Foundation\Mix } null $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); null if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new MixManifestNotFoundException("Mix manifest not found at: {$manifestPath}"); } null $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } null $manifest = $manifests[$manifestPath]; null if (! isset($manifest[$path])) { $exception = new MixFileNotFoundException("Unable to locate Mix file: {$path}."); null if (! app('config')->get('app.debug')) { report($exception); null return $path; } else { throw $exception; } } null return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } } null  false vendor/laravel/framework/src/Illuminate/Foundation/Mix.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php 611 mix null return new HtmlString('<input type="hidden" name="_method" value="'.$method.'">'); } } null if (! function_exists('mix')) { /** * Get the path to a versioned Mix file. * * @param  string  $path * @param  string  $manifestDirectory * * @throws \Exception */ function mix($path, $manifestDirectory = ''): HtmlString|string { return app(Mix::class)(...func_get_args()); } } null if (! function_exists('now')) { /** * Create a new Carbon instance for the current time. * * @param  \DateTimeZone|\UnitEnum|string|null  $tz */ function now($tz = null): CarbonInterface { return Date::now(enum_value($tz)); } } path /assets/css/vendor.css string false false false manifestDirectory null string false false false false vendor/laravel/framework/src/Illuminate/Foundation/helpers.php /home/coroxal/public_html/b2b/resources/views/layouts/app.blade.php 21 require null <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> null <meta name="csrf-token" content="{{ csrf_token() }}"> null <title>@yield('page-title') - {{ setting('app_name') }}</title> null <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ url('assets/img/icons/apple-touch-icon-144x144.png') }}" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ url('assets/img/icons/apple-touch-icon-152x152.png') }}" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-32x32.png') }}" sizes="32x32" /> <link rel="icon" type="image/png" href="{{ url('assets/img/icons/favicon-16x16.png') }}" sizes="16x16" /> <meta name="application-name" content="{{ setting('app_name') }}"/> <meta name="msapplication-TileColor" content="#FFFFFF" /> <meta name="msapplication-TileImage" content="{{ url('assets/img/icons/mstile-144x144.png') }}" /> null <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/vendor.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/app.css')) }}"> <link media="all" type="text/css" rel="stylesheet" href="{{ url(mix('assets/css/miota.css')) }}"> null @yield('styles') null @hook('app:styles') </head> <body> @include('partials.navbar') null <div class="container-fluid"> <div class="row"> @include('partials.sidebar.main') null path assets/css/vendor.css string false false false manifestDirectory null string false false false true resources/views/layouts/app.blade.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/ee1443fe6cd8976456d861abb24adee4.php string false false false false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/ee1443fe6cd8976456d861abb24adee4.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Support\Collection) object (App\Support\Plugins\Dashboard\Widgets\LatestRegistrations) null array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/ee1443fe6cd8976456d861abb24adee4.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Support\Collection) object (App\Support\Plugins\Dashboard\Widgets\LatestRegistrations) null array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/layouts/app.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) object (Illuminate\Support\Collection) object (App\Support\Plugins\Dashboard\Widgets\LatestRegistrations) null array false false false false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/resources/views/dashboard/index.blade.php 35 require null <li class="breadcrumb-item active"> @lang('Dashboard') </li> @stop null @section('content') @include('partials.messages') null <div class="row"> @foreach (\Vanguard\Plugins\Vanguard::availableWidgets(auth()->user()) as $widget) @if ($widget->width) <div class="col-md-{{ $widget->width }}"> @endif {!! app()->call([$widget, 'render']) !!} @if($widget->width) </div> @endif @endforeach </div> null @stop null @section('scripts') @foreach (\Vanguard\Plugins\Vanguard::availableWidgets(auth()->user()) as $widget) @if (method_exists($widget, 'scripts')) {!! app()->call([$widget, 'scripts']) !!} @endif @endforeach @stop null callback null null false false false true resources/views/dashboard/index.blade.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 123 {closure:Illuminate\Filesystem\Filesystem::getRequire():120} Illuminate\Filesystem\Filesystem * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException arg0 /home/coroxal/public_html/b2b/storage/framework/views/ca79f9b041847137c7ee518271bb4e3b.php string false false false false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php 124 getRequire Illuminate\Filesystem\Filesystem * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */ public function getRequire($path, array $data = []) { if ($this->isFile($path)) { $__path = $path; $__data = $data; null return (static function () use ($__path, $__data) { extract($__data, EXTR_SKIP); null return require $__path; })(); } null throw new FileNotFoundException("File does not exist at path {$path}."); } null /** * Require the given file once. * * @param  string  $path * @param  array  $data * @return mixed * * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException */  false vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php 57 evaluatePath Illuminate\View\Engines\PhpEngine * * @param  string  $path * @param  array  $data * @return string */ protected function evaluatePath($path, $data) { $obLevel = ob_get_level(); null ob_start(); null // We'll evaluate the contents of the view inside a try/catch block so we can // flush out any stray output that might get out before an error occurs or // an exception is thrown. This prevents any partial views from leaking. try { $this->files->getRequire($path, $data); } catch (Throwable $e) { $this->handleViewException($e, $obLevel); } null return ltrim(ob_get_clean()); } null /** * Handle a view exception. * * @param  \Throwable  $e * @param  int  $obLevel * @return void * path /home/coroxal/public_html/b2b/storage/framework/views/ca79f9b041847137c7ee518271bb4e3b.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php 76 get Illuminate\View\Engines\CompilerEngine { $this->lastCompiled[] = $path; null // If this given view has expired, which means it has simply been edited since // it was last compiled, we will re-compile the views so we can evaluate a // fresh copy of the view. We'll pass the compiler the path of the view. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { $this->compiler->compile($path); } null // Once we have the path to the compiled file, we will evaluate the paths with // typical PHP just like any other templates. We also keep a stack of views // which have been rendered for right exception messages to be generated. null try { $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } catch (ViewException $e) { if (! Str::of($e->getMessage())->contains(['No such file or directory', 'File does not exist at path'])) { throw $e; } null if (! isset($this->compiledOrNotExpired[$path])) { throw $e; } null $this->compiler->compile($path); null $results = $this->evaluatePath($this->compiler->getCompiledPath($path), $data); } null path /home/coroxal/public_html/b2b/storage/framework/views/ca79f9b041847137c7ee518271bb4e3b.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 208 getContents Illuminate\View\View // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */ protected function getContents() { return $this->engine->get($this->path, $this->gatherData()); } null /** * Get the data bound to the view instance. * * @return array */ public function gatherData() { $data = array_merge($this->factory->getShared(), $this->data); null foreach ($data as $key => $value) { if ($value instanceof Renderable) { $data[$key] = $value->render(); path /home/coroxal/public_html/b2b/resources/views/dashboard/index.blade.php string false false false data object (Illuminate\View\Factory) object (Illuminate\Foundation\Application) object (Illuminate\Support\ViewErrorBag) array false false false false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 191 renderContents Illuminate\View\View null /** * Get the contents of the view instance. * * @return string */ protected function renderContents() { // We will keep track of the number of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); null $this->factory->callComposer($this); null $contents = $this->getContents(); null // Once we've finished rendering the view, we'll decrement the render count // so that each section gets flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); null return $contents; } null /** * Get the evaluated contents of the view. * * @return string */  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/View.php 160 render Illuminate\View\View { return (new Collection($this->render(fn () => $this->factory->getFragments())))->implode(''); } null /** * Get the string contents of the view. * * @param  callable|null  $callback * @return string * * @throws \Throwable */ public function render(?callable $callback = null) { try { $contents = $this->renderContents(); null $response = isset($callback) ? $callback($this, $contents) : null; null // Once we have the contents of the view, we will flush the sections if we are // done rendering all views so that there is nothing left hanging over when // another view gets rendered in the future by the application developer. $this->factory->flushStateIfDoneRendering(); null return ! is_null($response) ? $response : $contents; } catch (Throwable $e) { $this->factory->flushState(); null throw $e; }  false vendor/laravel/framework/src/Illuminate/View/View.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 78 setContent Illuminate\Http\Response // from routes that will be automatically transformed to their JSON form. if ($this->shouldBeJson($content)) { $this->header('Content-Type', 'application/json'); null $content = $this->morphToJson($content); null if ($content === false) { throw new InvalidArgumentException(json_last_error_msg()); } } null // If this content implements the "Renderable" interface then we will call the // render method on the object so we will avoid any "__toString" exceptions // that might be thrown and have their errors obscured by PHP's handling. elseif ($content instanceof Renderable) { $content = $content->render(); } null parent::setContent($content); null return $this; } null /** * Determine if the given content should be turned into JSON. * * @param  mixed  $content * @return bool */ protected function shouldBeJson($content) callback null null false false false false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Response.php 34 __construct Illuminate\Http\Response } null /** * Create a new HTTP response. * * @param  mixed  $content * @param  int  $status * @param  array  $headers * * @throws \InvalidArgumentException */ public function __construct($content = '', $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); null $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); } null /** * Get the response content. */ #[\Override] public function getContent(): string|false { return transform(parent::getContent(), fn ($content) => $content, ''); } null /** null false vendor/laravel/framework/src/Illuminate/Http/Response.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 939 toResponse Illuminate\Routing\Router if ($response instanceof PsrResponseInterface) { $response = (new HttpFoundationFactory)->createResponse($response); } elseif ($response instanceof Model && $response->wasRecentlyCreated) { $response = new JsonResponse($response, 201); } elseif ($response instanceof Stringable) { $response = new Response($response->__toString(), 200, ['Content-Type' => 'text/html']); } elseif (! $response instanceof SymfonyResponse && ($response instanceof Arrayable || $response instanceof Jsonable || $response instanceof ArrayObject || $response instanceof JsonSerializable || $response instanceof stdClass || is_array($response))) { $response = new JsonResponse($response); } elseif (! $response instanceof SymfonyResponse) { $response = new Response($response, 200, ['Content-Type' => 'text/html']); } null if ($response->getStatusCode() === Response::HTTP_NOT_MODIFIED) { $response->setNotModified(); } null return $response->prepare($request); } null /** * Substitute the route bindings onto the route. * * @param  \Illuminate\Routing\Route  $route * @return \Illuminate\Routing\Route null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 906 prepareResponse Illuminate\Routing\Router { return (new SortedMiddleware($this->middlewarePriority, $middlewares))->all(); } null /** * Create a response instance from the given value. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public function prepareResponse($request, $response) { $this->events->dispatch(new PreparingResponse($request, $response)); null return tap(static::toResponse($request, $response), function ($response) use ($request) { $this->events->dispatch(new ResponsePrepared($request, $response)); }); } null /** * Static version of prepareResponse. * * @param  \Symfony\Component\HttpFoundation\Request  $request * @param  mixed  $response * @return \Symfony\Component\HttpFoundation\Response */ public static function toResponse($request, $response) { if ($response instanceof Responsable) { null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/ForcePasswordChange.php 22 handle App\Http\Middleware\ForcePasswordChange use App\Support\Authorization\PasswordChangeManager; use Closure; use Illuminate\Http\Request; null class ForcePasswordChange { public function __construct(private readonly PasswordChangeManager $forcePasswordChange) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if (! $this->forcePasswordChange->isPasswordChangeForcedForUser($request->user())) { return $next($request); } null if (in_array($request->route()->getName(), ['profile', 'profile.update.login-details'])) { return $next($request); } null return $request->expectsJson() ? abort(403, __('Before continuing please update your password and set a new one.')) : redirect(route('profile')); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true app/Http/Middleware/ForcePasswordChange.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/EnsureUserIsApproved.php 26 handle App\Http\Middleware\EnsureUserIsApproved <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Redirect; use Illuminate\Support\Facades\URL; null class EnsureUserIsApproved { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isWaitingApproval()) { return $request->expectsJson() ? abort(403, __('Your account is waiting approval from administrators.')) : Redirect::guest(URL::route('approval.notice')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true app/Http/Middleware/EnsureUserIsApproved.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php 41 handle Illuminate\Auth\Middleware\EnsureEmailIsVerified * @param  string  $route * @return string */ public static function redirectTo($route) { return static::class.':'.$route; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @param  string|null  $redirectToRoute * @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse|null */ public function handle($request, Closure $next, $redirectToRoute = null) { if (! $request->user() || ($request->user() instanceof MustVerifyEmail && ! $request->user()->hasVerifiedEmail())) { return $request->expectsJson() ? abort(403, 'Your email address is not verified.') : Redirect::guest(URL::route($redirectToRoute ?: 'verification.notice')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false redirectToRoute null null false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true app/Http/Middleware/Authenticate.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/boost/src/Middleware/InjectBoost.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true app/Http/Middleware/CheckIfBanned.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true app/Http/Middleware/SetLocale.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false true app/Http/Middleware/VerifyInstallation.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/ Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true public/index.php http://b2b.coroxal.it/public/ null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    select * from `b2b_sessions` where `id` = ? limit 1 2.35 mysql 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx 1780309587.8626 select * from `b2b_users` where `id` = ? limit 1 1.2 mysql 1 1780309587.8766 select * from `b2b_roles` where `b2b_roles`.`id` = ? limit 1 1.03 mysql 1 1780309587.8903 select `b2b_permissions`.*, `b2b_permission_role`.`role_id` as `pivot_role_id`, `b2b_permission_role`.`permission_id` as `pivot_permission_id` from `b2b_permissions` inner join `b2b_permission_role` on `b2b_permissions`.`id` = `b2b_permission_role`.`permission_id` where `b2b_permission_role`.`role_id` = ? 1.63 mysql 1 1780309587.8987 select count(*) as aggregate from `b2b_users` 0.51 mysql  1780309587.9054 select count(*) as aggregate from `b2b_users` where `created_at` between ? and ? 0.66 mysql 2026-06-01T00:00:00.000000Z 2026-06-01T10:26:27.905812Z 1780309587.9067 select count(*) as aggregate from `b2b_users` where `status` = ? 0.48 mysql Banned 1780309587.9077 select count(*) as aggregate from `b2b_users` where `status` = ? 0.36 mysql Unconfirmed 1780309587.9084 select `created_at` from `b2b_users` where `created_at` between ? and ? order by `created_at` asc 0.36 mysql 2026-07-01T00:00:00.000000Z 2026-06-30T23:59:59.999999Z 1780309587.9096 select * from `b2b_users` order by `created_at` desc limit 6 0.47 mysql  1780309587.9114  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780309587.8033 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780309587.8035 null b2b.coroxal.it keep-alive 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9,en-US;q=0.8,en;q=0.7 <CENSORED> L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T 1mmWwUcDbeO9mXMmn26xkEYDlxN2N6RjPSjmgWPx L6TfvQujVP2jGn4gUlqHi4MSCW8W9D3f3HpDEt2T en http://b2b.coroxal.it/public/giacenza-magazzino giacenza-magazzino   1 8.4.21 13.9.0 en false true production 1 admin@example.com admin 0 null null null Vanguard null null null null null 1 null 2026-06-01T09:15:16.000000Z Active null null null null 2026-06-01 09:14:57 2026-06-01T09:14:57.000000Z 2026-06-01T09:15:16.000000Z null 1 Admin Admin System administrator. false 2026-06-01T09:14:56.000000Z 2026-06-01T09:14:56.000000Z dashboard  App\Http\Controllers\Web\DashboardController@index App\Http\Middleware\VerifyInstallation web auth verified approved password-change null null /home/coroxal/public_html/b2b/resources/views/layouts/app.blade.php <pre class=sf-dump id=sf-dump-1636910813 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\ViewErrorBag</span> {<a class=sf-dump-ref>#1342</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">bags</span>: []
</samp>}
</pre><script>Sfdump("sf-dump-1636910813", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-1795498633 data-indent-pad="  "><span class=sf-dump-note>Illuminate\Support\Collection</span> {<a class=sf-dump-ref>#1832</a><samp data-depth=1 class=sf-dump-expanded>
  #<span class=sf-dump-protected title="Protected property">items</span>: <span class=sf-dump-note>array:6</span> [<samp data-depth=2 class=sf-dump-compact>
    <span class=sf-dump-index>0</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\TotalUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">TotalUsers</span></span> {<a class=sf-dump-ref>#1135</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a> &#8230;2}
    </samp>}
    <span class=sf-dump-index>1</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\NewUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">NewUsers</span></span> {<a class=sf-dump-ref>#1137</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>2</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\BannedUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">BannedUsers</span></span> {<a class=sf-dump-ref>#1158</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>3</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\UnconfirmedUsers
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">UnconfirmedUsers</span></span> {<a class=sf-dump-ref>#1159</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>3</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>4</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\RegistrationHistory
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">RegistrationHistory</span></span> {<a class=sf-dump-ref>#1160</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>8</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">usersPerMonth</span>: <span class=sf-dump-note>array:13</span> [ &#8230;13]
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
    <span class=sf-dump-index>5</span> => <span class="sf-dump-note sf-dump-ellipsization" title="App\Support\Plugins\Dashboard\Widgets\LatestRegistrations
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Support\Plugins\Dashboard\Widgets</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">LatestRegistrations</span></span> {<a class=sf-dump-ref>#1161</a><samp data-depth=3 class=sf-dump-compact>
      +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>4</span>"
      #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
      #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref href=#sf-dump-1795498633-ref21138 title="6 occurrences">#1138</a>}
    </samp>}
  </samp>]
  #<span class=sf-dump-protected title="Protected property">escapeWhenCastingToString</span>: <span class=sf-dump-const>false</span>
</samp>}
</pre><script>Sfdump("sf-dump-1795498633", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-100996570 data-indent-pad="  "><span class=sf-dump-note>App\Support\Plugins\Dashboard\Widgets\LatestRegistrations</span> {<a class=sf-dump-ref>#1161</a><samp data-depth=1 class=sf-dump-expanded>
  +<span class=sf-dump-public title="Public property">width</span>: "<span class=sf-dump-str>4</span>"
  #<span class=sf-dump-protected title="Protected property">permissions</span>: "<span class=sf-dump-str title="12 characters">users.manage</span>"
  #<span class=sf-dump-protected title="Protected property">users</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\User\EloquentUser
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\User</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentUser</span></span> {<a class=sf-dump-ref>#1138</a><samp data-depth=2 class=sf-dump-compact>
    -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Repositories\User\EloquentUser`">avatarManager</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Services\Upload\UserAvatarManager
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Services\Upload</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">UserAvatarManager</span></span> {<a class=sf-dump-ref>#1144</a><samp data-depth=3 class=sf-dump-compact>
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Services\Upload\UserAvatarManager`">fs</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Illuminate\Filesystem\LocalFilesystemAdapter
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Illuminate\Filesystem</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">LocalFilesystemAdapter</span></span> {<a class=sf-dump-ref>#1152</a> &#8230;10}
      #<span class=sf-dump-protected title="Protected property">disk</span>: "<span class=sf-dump-str title="6 characters">public</span>"
      -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Services\Upload\UserAvatarManager`">imageManager</span>: <span class="sf-dump-note sf-dump-ellipsization" title="Intervention\Image\ImageManager
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">Intervention\Image</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">ImageManager</span></span> {<a class=sf-dump-ref>#1142</a> &#8230;1}
    </samp>}
    -<span class=sf-dump-private title="Private property defined in class:&#10;`App\Repositories\User\EloquentUser`">roles</span>: <span class="sf-dump-note sf-dump-ellipsization" title="App\Repositories\Role\EloquentRole
"><span class="sf-dump-ellipsis sf-dump-ellipsis-note">App\Repositories\Role</span><span class="sf-dump-ellipsis sf-dump-ellipsis-note">\</span><span class="sf-dump-ellipsis-tail">EloquentRole</span></span> {<a class=sf-dump-ref>#1139</a>}
  </samp>}
</samp>}
</pre><script>Sfdump("sf-dump-100996570", {"maxDepth":3,"maxStringLength":160})</script> <pre class=sf-dump id=sf-dump-603877498 data-indent-pad="  "><span class=sf-dump-const>null</span>
</pre><script>Sfdump("sf-dump-603877498", {"maxDepth":3,"maxStringLength":160})</script> null null null  web http://b2b.coroxal.it/public/ Illuminate\Foundation\MixFileNotFoundException Unable to locate Mix file: /assets/css/vendor.css. /home/coroxal/public_html/b2b null 8.4.21 13.9.0 Flare production Illuminate\Foundation\Mix __invoke    {"url":"http://b2b.coroxal.it/public/","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:26:28.888Z"} 
[2026-06-01 10:29:21] production.INFO: %cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools font-weight:bold {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:29:20.989Z"} 
[2026-06-01 10:29:21] production.DEBUG: Laravel Client PHP 13.9.0 8.4.21 Error 1780309760 Call to undefined function App\Http\Controllers\Web\curl_init()    /home/coroxal/public_html/b2b/app/Http/Controllers/Web/DettagliMagazzino.php 25 index App\Http\Controllers\Web\DettagliMagazzino null class DettagliMagazzino extends Controller { public function __construct() { $this->middleware('auth'); } null public function index(): View { null $args = [ "codice_bp" => auth()->user()->codice_bp ]; null $curl = curl_init(); null curl_setopt_array($curl, array( CURLOPT_URL => 'http://62.97.48.26:51880/miota/api/getMagazzinoCliente', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS => json_encode($args), CURLOPT_HTTPHEADER => array( 'Content-Type: application/json' ),  true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Controller.php 54 callAction Illuminate\Routing\Controller */ public function getMiddleware() { return $this->middleware; } null /** * Execute an action on the controller. * * @param  string  $method * @param  array  $parameters * @return \Symfony\Component\HttpFoundation\Response */ public function callAction($method, $parameters) { return $this->{$method}(...array_values($parameters)); } null /** * Handle calls to missing methods on the controller. * * @param  string  $method * @param  array  $parameters * @return mixed * * @throws \BadMethodCallException */ public function __call($method, $parameters) { throw new BadMethodCallException(sprintf(  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php 43 dispatch Illuminate\Routing\ControllerDispatcher } null /** * Dispatch a request to a given controller and method. * * @param  \Illuminate\Routing\Route  $route * @param  mixed  $controller * @param  string  $method * @return mixed */ public function dispatch(Route $route, $controller, $method) { $parameters = $this->resolveParameters($route, $controller, $method); null if (method_exists($controller, 'callAction')) { return $controller->callAction($method, $parameters); } null return $controller->{$method}(...array_values($parameters)); } null /** * Resolve the parameters for the controller. * * @param  \Illuminate\Routing\Route  $route * @param  mixed  $controller * @param  string  $method * @return array */ protected function resolveParameters(Route $route, $controller, $method) method index string false false false parameters  array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 269 runController Illuminate\Routing\Route */ protected function isSerializedClosure() { return RouteAction::containsSerializedClosure($this->action); } null /** * Run the route action and return the response. * * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } null /** * Get the controller instance for the route. * * @return mixed * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function getController() { if (! $this->isControllerAction()) { route object Illuminate\Routing\Route false false false controller object App\Http\Controllers\Web\DettagliMagazzino false false false method index string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 215 run Illuminate\Routing\Route { return RouteAction::parse($this->uri, $action); } null /** * Run the route action and return the response. * * @return mixed */ public function run() { $this->container = $this->container ?: new Container; null try { if ($this->isControllerAction()) { return $this->runController(); } null return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); } } null /** * Checks whether the route's action is a controller. * * @return bool */ protected function isControllerAction()  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 822 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9 <CENSORED> xpuWbpIVxwNafLwnO7cjd86f76dQQDMc3pbmgeJF xpQ7ZYfEWF4ce6k87erXLuc9qcs4WaaJ1ujhU4lq xpuWbpIVxwNafLwnO7cjd86f76dQQDMc3pbmgeJF en  http://b2b.coroxal.it/public/profile profile   2 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 2 citterio.spa@b2b.it citterio.spa 1 null null null CITTERIO SPA null null null null 2 null 2026-06-01T09:45:54.000000Z Active 13011131 null null null 2026-06-01 09:45:24 2026-06-01T09:45:24.000000Z 2026-06-01T10:28:39.000000Z null 8.4.21 13.9.0 en false true production  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780309759.9314 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780309759.9315 select * from `b2b_sessions` where `id` = ? limit 1 2.12 mysql xpQ7ZYfEWF4ce6k87erXLuc9qcs4WaaJ1ujhU4lq 1780309759.9848 select * from `b2b_users` where `id` = ? limit 1 1.2 mysql 2 1780309759.9963 production null null /home/coroxal/public_html/b2b null a5150c3e-19c1-4973-b6f7-1225c26984b4 null null Laravel Client PHP 13.9.0 8.4.21 Error 1780309760 Call to undefined function App\Http\Controllers\Web\curl_init()    /home/coroxal/public_html/b2b/app/Http/Controllers/Web/DettagliMagazzino.php 25 index App\Http\Controllers\Web\DettagliMagazzino null class DettagliMagazzino extends Controller { public function __construct() { $this->middleware('auth'); } null public function index(): View { null $args = [ "codice_bp" => auth()->user()->codice_bp ]; null $curl = curl_init(); null curl_setopt_array($curl, array( CURLOPT_URL => 'http://62.97.48.26:51880/miota/api/getMagazzinoCliente', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS => json_encode($args), CURLOPT_HTTPHEADER => array( 'Content-Type: application/json' ),  true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Controller.php 54 callAction Illuminate\Routing\Controller */ public function getMiddleware() { return $this->middleware; } null /** * Execute an action on the controller. * * @param  string  $method * @param  array  $parameters * @return \Symfony\Component\HttpFoundation\Response */ public function callAction($method, $parameters) { return $this->{$method}(...array_values($parameters)); } null /** * Handle calls to missing methods on the controller. * * @param  string  $method * @param  array  $parameters * @return mixed * * @throws \BadMethodCallException */ public function __call($method, $parameters) { throw new BadMethodCallException(sprintf(  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php 43 dispatch Illuminate\Routing\ControllerDispatcher } null /** * Dispatch a request to a given controller and method. * * @param  \Illuminate\Routing\Route  $route * @param  mixed  $controller * @param  string  $method * @return mixed */ public function dispatch(Route $route, $controller, $method) { $parameters = $this->resolveParameters($route, $controller, $method); null if (method_exists($controller, 'callAction')) { return $controller->callAction($method, $parameters); } null return $controller->{$method}(...array_values($parameters)); } null /** * Resolve the parameters for the controller. * * @param  \Illuminate\Routing\Route  $route * @param  mixed  $controller * @param  string  $method * @return array */ protected function resolveParameters(Route $route, $controller, $method) method index string false false false parameters  array false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 269 runController Illuminate\Routing\Route */ protected function isSerializedClosure() { return RouteAction::containsSerializedClosure($this->action); } null /** * Run the route action and return the response. * * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } null /** * Get the controller instance for the route. * * @return mixed * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function getController() { if (! $this->isControllerAction()) { route object Illuminate\Routing\Route false false false controller object App\Http\Controllers\Web\DettagliMagazzino false false false method index string false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 215 run Illuminate\Routing\Route { return RouteAction::parse($this->uri, $action); } null /** * Run the route action and return the response. * * @return mixed */ public function run() { $this->container = $this->container ?: new Container; null try { if ($this->isControllerAction()) { return $this->runController(); } null return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); } } null /** * Checks whether the route's action is a controller. * * @return bool */ protected function isControllerAction()  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 822 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null  false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    b2b.coroxal.it keep-alive 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9 <CENSORED> xpuWbpIVxwNafLwnO7cjd86f76dQQDMc3pbmgeJF xpQ7ZYfEWF4ce6k87erXLuc9qcs4WaaJ1ujhU4lq xpuWbpIVxwNafLwnO7cjd86f76dQQDMc3pbmgeJF en  http://b2b.coroxal.it/public/profile profile   2 giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth 2 citterio.spa@b2b.it citterio.spa 1 null null null CITTERIO SPA null null null null 2 null 2026-06-01T09:45:54.000000Z Active 13011131 null null null 2026-06-01 09:45:24 2026-06-01T09:45:24.000000Z 2026-06-01T10:28:39.000000Z null 8.4.21 13.9.0 en false true production  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780309759.9314 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780309759.9315 select * from `b2b_sessions` where `id` = ? limit 1 2.12 mysql xpQ7ZYfEWF4ce6k87erXLuc9qcs4WaaJ1ujhU4lq 1780309759.9848 select * from `b2b_users` where `id` = ? limit 1 1.2 mysql 2 1780309759.9963 production null null /home/coroxal/public_html/b2b null a5150c3e-19c1-4973-b6f7-1225c26984b4 null null phpstorm auto false /home/coroxal/public_html/b2b null true false / Clipboard %path:%line true Sublime subl://open?url=file://%path&line=%line TextMate txmt://open?url=file://%path&line=%line Emacs emacs://open?url=file://%path&line=%line MacVim mvim://open/?url=file://%path&line=%line PhpStorm phpstorm://open?file=%path&line=%line PHPStorm Remote javascript:r = new XMLHttpRequest;r.open("get", "http://localhost:63342/api/file/%path:%line");r.send() Idea idea://open?file=%path&line=%line VS Code vscode://file/%path:%line VS Code Insiders vscode-insiders://file/%path:%line VS Code Remote vscode://vscode-remote/%path:%line VS Code Insiders Remote vscode-insiders://vscode-remote/%path:%line VS Codium vscodium://file/%path:%line Cursor cursor://file/%path:%line Atom atom://core/open/file?filename=%path&line=%line Nova nova://open?path=%path&line=%line NetBeans netbeans://open/?f=%path:%line Zed zed://file/%path:%line Windsurf windsurf://file/%path:%line Xdebug xdebug://%path@%line https://flareapp.io/api/public-reports  /_ignition/update-config /home/coroxal/public_html/b2b/app/Http/Controllers/Web/DettagliMagazzino.php 25 index App\Http\Controllers\Web\DettagliMagazzino null class DettagliMagazzino extends Controller { public function __construct() { $this->middleware('auth'); } null public function index(): View { null $args = [ "codice_bp" => auth()->user()->codice_bp ]; null $curl = curl_init(); null curl_setopt_array($curl, array( CURLOPT_URL => 'http://62.97.48.26:51880/miota/api/getMagazzinoCliente', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS => json_encode($args), CURLOPT_HTTPHEADER => array( 'Content-Type: application/json' ),  true app/Http/Controllers/Web/DettagliMagazzino.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Controller.php 54 callAction Illuminate\Routing\Controller */ public function getMiddleware() { return $this->middleware; } null /** * Execute an action on the controller. * * @param  string  $method * @param  array  $parameters * @return \Symfony\Component\HttpFoundation\Response */ public function callAction($method, $parameters) { return $this->{$method}(...array_values($parameters)); } null /** * Handle calls to missing methods on the controller. * * @param  string  $method * @param  array  $parameters * @return mixed * * @throws \BadMethodCallException */ public function __call($method, $parameters) { throw new BadMethodCallException(sprintf(  false vendor/laravel/framework/src/Illuminate/Routing/Controller.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php 43 dispatch Illuminate\Routing\ControllerDispatcher } null /** * Dispatch a request to a given controller and method. * * @param  \Illuminate\Routing\Route  $route * @param  mixed  $controller * @param  string  $method * @return mixed */ public function dispatch(Route $route, $controller, $method) { $parameters = $this->resolveParameters($route, $controller, $method); null if (method_exists($controller, 'callAction')) { return $controller->callAction($method, $parameters); } null return $controller->{$method}(...array_values($parameters)); } null /** * Resolve the parameters for the controller. * * @param  \Illuminate\Routing\Route  $route * @param  mixed  $controller * @param  string  $method * @return array */ protected function resolveParameters(Route $route, $controller, $method) method index string false false false parameters  array false false false false vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 269 runController Illuminate\Routing\Route */ protected function isSerializedClosure() { return RouteAction::containsSerializedClosure($this->action); } null /** * Run the route action and return the response. * * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException */ protected function runController() { return $this->controllerDispatcher()->dispatch( $this, $this->getController(), $this->getControllerMethod() ); } null /** * Get the controller instance for the route. * * @return mixed * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function getController() { if (! $this->isControllerAction()) { route object Illuminate\Routing\Route false false false controller object App\Http\Controllers\Web\DettagliMagazzino false false false method index string false false false false vendor/laravel/framework/src/Illuminate/Routing/Route.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Route.php 215 run Illuminate\Routing\Route { return RouteAction::parse($this->uri, $action); } null /** * Run the route action and return the response. * * @return mixed */ public function run() { $this->container = $this->container ?: new Container; null try { if ($this->isControllerAction()) { return $this->runController(); } null return $this->runCallable(); } catch (HttpResponseException $e) { return $e->getResponse(); } } null /** * Checks whether the route's action is a controller. * * @return bool */ protected function isControllerAction()  false vendor/laravel/framework/src/Illuminate/Routing/Route.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 822 {closure:Illuminate\Routing\Router::runRouteWithinStack():821} Illuminate\Routing\Router * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } null  false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/Authenticate.php 27 handle App\Http\Middleware\Authenticate <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Contracts\Auth\Guard; use Illuminate\Http\Request; null class Authenticate { public function __construct(private readonly Guard $auth) {} null /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($this->auth->guest()) { return $request->expectsJson() ? response('Unauthorized.', 401) : redirect()->guest('login'); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/Authenticate.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/boost/src/Middleware/InjectBoost.php 22 handle Laravel\Boost\Middleware\InjectBoost use Closure; use Illuminate\Http\JsonResponse; use Illuminate\Http\RedirectResponse; use Illuminate\Http\Request; use Illuminate\View\View; use Laravel\Boost\Services\BrowserLogger; use Symfony\Component\HttpFoundation\BinaryFileResponse; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\StreamedResponse; null class InjectBoost { public function handle(Request $request, Closure $next): Response { /** @var Response $response */ $response = $next($request); null if ($this->shouldInject($request, $response)) { $originalView = $response->original ?? null; $injectedContent = $this->injectScript($response->getContent()); $response->setContent($injectedContent); null if ($originalView instanceof View && property_exists($response, 'original')) { $response->original = $originalView; } } null return $response; } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/boost/src/Middleware/InjectBoost.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/CheckIfBanned.php 22 handle App\Http\Middleware\CheckIfBanned <?php null namespace App\Http\Middleware; null use Closure; use Illuminate\Http\Request; null class CheckIfBanned { /** * Handle an incoming request. * * @param  Request  $request * @return mixed */ public function handle($request, Closure $next) { if ($request->user() && $request->user()->isBanned()) { abort(403, __('Your account is banned by administrator.')); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/CheckIfBanned.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/SetLocale.php 24 handle App\Http\Middleware\SetLocale use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; null class SetLocale { /** * Handle an incoming request. */ public function handle(Request $request, Closure $next): mixed { $locale = $this->getLocale($request); null app()->setLocale($locale); Carbon::setLocale($locale); null return $next($request); } null /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ private function getLocale(Request $request): string { $newLocale = $request->get('lang'); null if (! $newLocale || ! Locale::validateLocale($newLocale)) { return $this->getSelectedLocale(); } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/SetLocale.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php 52 handle Illuminate\Routing\Middleware\SubstituteBindings } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Database\Eloquent\ModelNotFoundException */ public function handle($request, Closure $next) { $route = $request->route(); null try { $this->router->substituteBindings($route); $this->router->substituteImplicitBindings($route); } catch (ModelNotFoundException $exception) { if ($route->getMissing()) { return $route->getMissing()($request, $exception); } null throw $exception; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php 104 handle Illuminate\Foundation\Http\Middleware\PreventRequestForgery * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Session\TokenMismatchException * @throws \Illuminate\Http\Exceptions\OriginMismatchException */ public function handle($request, Closure $next) { if ( $this->isReading($request) || $this->runningUnitTests() || $this->inExceptArray($request) || $this->hasValidOrigin($request) || $this->tokensMatch($request) ) { return tap($next($request), function ($response) use ($request) { if ($this->shouldAddXsrfTokenCookie()) { $this->addCookieToResponse($request, $response); } }); } null throw new TokenMismatchException('CSRF token mismatch.'); } null /** * Determine if the HTTP request uses a ‘read’ verb. * * @param  \Illuminate\Http\Request  $request * @return bool arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestForgery.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php 48 handle Illuminate\View\Middleware\ShareErrorsFromSession */ public function __construct(ViewFactory $view) { $this->view = $view; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { // If the current session has an "errors" variable bound to it, we will share // its value with all view instances so the views can easily access errors // without having to bind. An empty bag is set when there aren't errors. $this->view->share( 'errors', $request->session()->get('errors') ?: new ViewErrorBag ); null // 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. null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 120 handleStatefulRequest Illuminate\Session\Middleware\StartSession * @param  \Illuminate\Contracts\Session\Session  $session * @param  \Closure  $next * @return mixed */ protected function handleStatefulRequest(Request $request, $session, Closure $next) { // If a session driver has been configured, we will need to start the session here // so that the data is ready for an application. Note that the Laravel sessions // do not make use of PHP "native" sessions in any way since they are crappy. $request->setLaravelSession( $this->startSession($request, $session) ); null $this->collectGarbage($session); null $response = $next($request); null $this->storeCurrentUrl($request, $session); null $this->addCookieToResponse($response, $session); null // 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); null return $response; } null /** arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php 63 handle Illuminate\Session\Middleware\StartSession * @return mixed */ public function handle($request, Closure $next) { if (! $this->sessionConfigured()) { return $next($request); } null $session = $this->getSession($request); null if ($this->manager->shouldBlock() || ($request->route() instanceof Route && $request->route()->locksFor())) { return $this->handleRequestWhileBlocking($request, $session, $next); } null return $this->handleStatefulRequest($request, $session, $next); } null /** * 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) { if (! $request->route() instanceof Route) { return; request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false session object Illuminate\Session\Store false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php 36 handle Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse null /** * Create a new CookieQueue instance. * * @param  \Illuminate\Contracts\Cookie\QueueingFactory  $cookies */ public function __construct(CookieJar $cookies) { $this->cookies = $cookies; } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $response = $next($request); null foreach ($this->cookies->getQueuedCookies() as $cookie) { $response->headers->setCookie($cookie); } null return $response; } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php 74 handle Illuminate\Cookie\Middleware\EncryptCookies */ public function disableFor($name) { $this->except = array_merge($this->except, (array) $name); } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle($request, Closure $next) { return $this->encrypt($next($this->decrypt($request))); } null /** * 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) { if ($this->isDisabled($key)) { continue; } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/app/Http/Middleware/VerifyInstallation.php 39 handle App\Http\Middleware\VerifyInstallation /** * Handle an incoming request. * * @param  Request  $request * @return mixed * * @throws HttpException */ public function handle($request, Closure $next) { if (app()->environment('testing')) { return $next($request); } null if (! file_exists(base_path('.env')) && ! $request->is('install*')) { return redirect()->to('install'); } null if (file_exists(base_path('.env')) && $request->is('install*') && ! $request->is('install/complete')) { throw new NotFoundHttpException; } null if ($request->is('install*') && ! config()->get('app.key')) { config()->set('app.key', InstallController::TMP_APP_KEY); } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false true app/Http/Middleware/VerifyInstallation.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 821 runRouteWithinStack Illuminate\Routing\Router * * @param  \Illuminate\Routing\Route  $route * @param  \Illuminate\Http\Request  $request * @return mixed */ protected function runRouteWithinStack(Route $route, Request $request) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; null $middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route); null return (new Pipeline($this->container)) ->send($request) ->through($middleware) ->then(fn ($request) => $this->prepareResponse( $request, $route->run() )); } null /** * Gather the middleware for the given route with resolved class names. * * @param  \Illuminate\Routing\Route  $route * @return array */ public function gatherRouteMiddleware(Route $route) { return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware()); } destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php:821-823 Closure false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 800 runRoute Illuminate\Routing\Router null /** * Return the response for the given route. * * @param  \Illuminate\Http\Request  $request * @param  \Illuminate\Routing\Route  $route * @return \Symfony\Component\HttpFoundation\Response */ protected function runRoute(Request $request, Route $route) { $request->setRouteResolver(fn () => $route); null $this->events->dispatch(new RouteMatched($route, $request)); null return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request) ); } null /** * 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) { $shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === true; route object Illuminate\Routing\Route false false false request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 764 dispatchToRoute Illuminate\Routing\Router public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** * 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)); null $this->current = $route = $this->routes->match($request); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false route object Illuminate\Routing\Route false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Routing/Router.php 753 dispatch Illuminate\Routing\Router $route = tap($this->routes->getByName($name))->bind($this->currentRequest); null return $this->runRoute($this->currentRequest, $route); } null /** * Dispatch the request to the application. * * @param  \Illuminate\Http\Request  $request * @return \Symfony\Component\HttpFoundation\Response */ public function dispatch(Request $request) { $this->currentRequest = $request; null return $this->dispatchToRoute($request); } null /** * 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)); } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Routing/Router.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 200 {closure:Illuminate\Foundation\Http\Kernel::dispatchToRouter():197} Illuminate\Foundation\Http\Kernel if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null /** * Get the route dispatcher callback. * * @return \Closure */ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); null return $this->router->dispatch($request); }; } null /** * 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) { $this->app['events']->dispatch(new Terminating); null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 180 {closure:Illuminate\Pipeline\Pipeline::prepareDestination():178} Illuminate\Pipeline\Pipeline $this->finally = $callback; null return $this; } null /** * Get the final piece of the Closure onion. * * @param  \Closure  $destination * @return \Closure */ protected function prepareDestination(Closure $destination) { return function ($passable) use ($destination) { try { return $destination($passable); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; } null /** * Get a Closure that represents a slice of the application onion. * * @return \Closure */ protected function carry() { return function ($stack, $pipe) { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php 61 handle Proengsoft\JsValidation\RemoteValidationMiddleware } null /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle(Request $request, Closure $next) { if ($request->has($this->field)) { $this->wrapValidator(); } null return $next($request); } null /** * Wraps Validator resolver with RemoteValidator resolver. * * @return void */ protected function wrapValidator() { $resolver = new Resolver($this->factory, $this->escape); $this->factory->resolver($resolver->resolver($this->field)); $this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); } } arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/proengsoft/laravel-jsvalidation/src/RemoteValidationMiddleware.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:178-184 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php 31 handle Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { return $value === '' ? null : $value; } null request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php 21 handle Illuminate\Foundation\Http\Middleware\TransformsRequest use Symfony\Component\HttpFoundation\ParameterBag; null class TransformsRequest { /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { $this->clean($request); null return $next($request); } null /** * Clean the request's data. * * @param  \Illuminate\Http\Request  $request * @return void */ protected function clean($request) { $this->cleanParameterBag($request->query); null if ($request->isJson()) { $this->cleanParameterBag($request->json()); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php 51 handle Illuminate\Foundation\Http\Middleware\TrimStrings /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null return parent::handle($request, $next); } null /** * Transform the given value. * * @param  string  $key * @param  mixed  $value * @return mixed */ protected function transform($key, $value) { $except = array_merge($this->except, static::$neverTrim); null if ($this->shouldSkip($key, $except) || ! is_string($value)) { request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php 27 handle Illuminate\Http\Middleware\ValidatePostSize * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Illuminate\Http\Exceptions\PostTooLargeException */ public function handle($request, Closure $next) { $max = $this->getPostMaxSize(); null if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) { throw new PostTooLargeException('The POST data is too large.'); } null return $next($request); } null /** * 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; } null $metric = strtoupper(substr($postMaxSize, -1)); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php 109 handle Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance return response( $data['template'], $data['status'] ?? 503, $this->getHeaders($data) ); } null throw new HttpException( $data['status'] ?? 503, 'Service Unavailable', null, $this->getHeaders($data) ); } null return $next($request); } null /** * 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) { return isset($data['secret']) && $request->cookie('laravel_maintenance') && MaintenanceModeBypassCookie::isValid( arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php 61 handle Illuminate\Http\Middleware\HandleCors * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Illuminate\Http\Response */ public function handle($request, Closure $next) { foreach (static::$skipCallbacks as $callback) { if ($callback($request)) { return $next($request); } } null if (! $this->hasMatchingPath($request)) { return $next($request); } null $this->cors->setOptions($this->container['config']->get('cors', [])); null if ($this->cors->isPreflightRequest($request)) { $response = $this->cors->handlePreflightRequest($request); null $this->cors->varyHeader($response, 'Access-Control-Request-Method'); null return $response; } null $response = $next($request); null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php 58 handle Illuminate\Http\Middleware\TrustProxies /** * Handle an incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return mixed * * @throws \Symfony\Component\HttpKernel\Exception\HttpException */ public function handle(Request $request, Closure $next) { $request::setTrustedProxies([], $this->getTrustedHeaderNames()); null $this->setTrustedProxyIpAddresses($request); null return $next($request); } null /** * 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'); null if (is_null($trustedIps) && (laravel_cloud() || arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php 22 handle Illuminate\Foundation\Http\Middleware\InvokeDeferredCallbacks use Illuminate\Http\Request; use Illuminate\Support\Defer\DeferredCallbackCollection; use Symfony\Component\HttpFoundation\Response; null class InvokeDeferredCallbacks { /** * Handle the incoming request. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response */ public function handle(Request $request, Closure $next) { return $next($request); } null /** * Invoke the deferred callbacks. * * @param  \Illuminate\Http\Request  $request * @param  \Symfony\Component\HttpFoundation\Response  $response * @return void */ public function terminate(Request $request, Response $response) { Container::getInstance() ->make(DeferredCallbackCollection::class) ->invokeWhen(fn ($callback) => $response->getStatusCode() < 400 || $callback->always); arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php 28 handle Illuminate\Http\Middleware\ValidatePathEncoding null namespace Illuminate\Http\Middleware; null use Closure; use Illuminate\Http\Exceptions\MalformedUrlException; use Illuminate\Http\Request; null class ValidatePathEncoding { /** * Validate that the incoming request has a valid UTF-8 encoded path. * * @param  \Illuminate\Http\Request  $request * @param  \Closure  $next * @return \Symfony\Component\HttpFoundation\Response * * @throws \Illuminate\Http\Exceptions\MalformedUrlException */ public function handle(Request $request, Closure $next) { $decodedPath = rawurldecode($request->path()); null if (! mb_check_encoding($decodedPath, 'UTF-8')) { throw new MalformedUrlException; } null return $next($request); } } null arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePathEncoding.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 219 {closure:{closure:Illuminate\Pipeline\Pipeline::carry():194}:195} Illuminate\Pipeline\Pipeline null // 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); null $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]; } null $carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters); null return $this->handleCarry($carry); } catch (Throwable $e) { return $this->handleException($passable, $e); } }; }; } null /** * Parse full pipe string to get name and parameters. * * @param  string  $pipe request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false next /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:195-226 Closure false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php 137 then Illuminate\Pipeline\Pipeline /** * Run the pipeline with a final destination callback. * * @param  \Closure  $destination * @return mixed */ public function then(Closure $destination) { $pipeline = array_reduce( array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination) ); null try { return $this->withinTransaction !== false ? $this->getContainer()->make('db')->connection($this->withinTransaction)->transaction(fn () => $pipeline($this->passable)) : $pipeline($this->passable); } finally { if ($this->finally) { ($this->finally)($this->passable); } } } null /** * Run the pipeline and return the result. * * @return mixed */ public function thenReturn() { arg0 GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 175 sendRequestThroughRouter Illuminate\Foundation\Http\Kernel * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ protected function sendRequestThroughRouter($request) { $this->app->instance('request', $request); null Request::clearResolvedInstance(); null $this->bootstrap(); null return (new Pipeline($this->app)) ->send($request) ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) ->then($this->dispatchToRouter()); } null /** * Bootstrap the application for HTTP requests. * * @return void */ public function bootstrap() { if (! $this->app->hasBeenBootstrapped()) { $this->app->bootstrapWith($this->bootstrappers()); } } null destination /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:197-201 Closure false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php 144 handle Illuminate\Foundation\Http\Kernel } null /** * Handle an incoming HTTP request. * * @param  \Illuminate\Http\Request  $request * @return \Illuminate\Http\Response */ public function handle($request) { $this->requestStartedAt = Carbon::now(); null try { $request->enableHttpMethodParameterOverride(); null $response = $this->sendRequestThroughRouter($request); } catch (Throwable $e) { $this->reportException($e); null $response = $this->renderException($request, $e); } null $this->app['events']->dispatch( new RequestHandled($request, $response) ); null return $response; } null /** request GET http://b2b.coroxal.it/public/giacenza-magazzino Illuminate\Http\Request false false false false vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php /home/coroxal/public_html/b2b/public/index.php 55 [top] null | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ null $app = require_once __DIR__.'/../bootstrap/app.php'; null /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ null $kernel = $app->make(Kernel::class); null $response = $kernel->handle( $request = Request::capture() ); null $response->send(); null $kernel->terminate($request, $response); null  true public/index.php http://b2b.coroxal.it/public/giacenza-magazzino null GET Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36    select * from `b2b_sessions` where `id` = ? limit 1 2.12 mysql xpQ7ZYfEWF4ce6k87erXLuc9qcs4WaaJ1ujhU4lq 1780309759.9848 select * from `b2b_users` where `id` = ? limit 1 1.2 mysql 2 1780309759.9963  Creation of dynamic property Akaunting\Setting\Drivers\Json::$files is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 16 warning  1780309759.9314 Creation of dynamic property Akaunting\Setting\Drivers\Json::$path is deprecated in /home/coroxal/public_html/b2b/vendor/akaunting/laravel-setting/src/Drivers/Json.php on line 40 warning  1780309759.9315 null b2b.coroxal.it keep-alive 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36 text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 gzip, deflate it-IT,it;q=0.9 <CENSORED> xpuWbpIVxwNafLwnO7cjd86f76dQQDMc3pbmgeJF xpQ7ZYfEWF4ce6k87erXLuc9qcs4WaaJ1ujhU4lq xpuWbpIVxwNafLwnO7cjd86f76dQQDMc3pbmgeJF en  http://b2b.coroxal.it/public/profile profile   2 8.4.21 13.9.0 en false true production 2 citterio.spa@b2b.it citterio.spa 1 null null null CITTERIO SPA null null null null 2 null 2026-06-01T09:45:54.000000Z Active 13011131 null null null 2026-06-01 09:45:24 2026-06-01T09:45:24.000000Z 2026-06-01T10:28:39.000000Z null giacenza-magazzino  App\Http\Controllers\Web\DettagliMagazzino@index App\Http\Middleware\VerifyInstallation web auth null null null null null null  web http://b2b.coroxal.it/public/giacenza-magazzino Error Call to undefined function App\Http\Controllers\Web\curl_init() /home/coroxal/public_html/b2b null 8.4.21 13.9.0 Flare production App\Http\Controllers\Web\DettagliMagazzino index    {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:29:21.001Z"} 
[2026-06-01 10:38:11] production.ERROR: Uncaught ReferenceError: DataTable is not defined http://b2b.coroxal.it/public/giacenza-magazzino 238 25 ReferenceError DataTable is not defined ReferenceError: DataTable is not defined
    at http://b2b.coroxal.it/public/giacenza-magazzino:238:25 {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:38:11.100Z"} 
[2026-06-01 10:38:11] production.ERROR: Uncaught ReferenceError: DataTable is not defined http://b2b.coroxal.it/public/giacenza-magazzino 238 25 ReferenceError DataTable is not defined ReferenceError: DataTable is not defined
    at http://b2b.coroxal.it/public/giacenza-magazzino:238:25 {"url":"http://b2b.coroxal.it/public/giacenza-magazzino","user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36","timestamp":"2026-06-01T10:38:11.100Z"} 
