Symfony Exception
Exception
ErrorException
Show exception properties
ErrorException {#2118 #severity: E_WARNING }
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Collections/Collection.php
(line 1753)
* @param TKey $key
* @return TValue
*/
public function offsetGet($key): mixed
{
return $this->items[$key];
}
/**
* Set the item at a given offset.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php
->
handleError
(line 255)
* @return callable
*/
protected function forwardsTo($method)
{
return fn (...$arguments) => static::$app
? $this->{$method}(...$arguments)
: false;
}
/**
* Determine if the error level is a deprecation.
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Collections/Collection.php
->
Illuminate\Foundation\Bootstrap\{closure}
(line 1753)
* @param TKey $key
* @return TValue
*/
public function offsetGet($key): mixed
{
return $this->items[$key];
}
/**
* Set the item at a given offset.
*
Collection->offsetGet()
in
/home/aftermarketstrat/public_html/manage/app/Http/Controllers/HomeController.php
(line 202)
$applications = $vehicle_part->scopeQuery(function ($query) use($parts) {
return $query->join('vehicle', 'vehicle.id','=', 'vehicle_part.vehicle_id')
->join('make', 'make.id','=', 'vehicle.make_id')
->join('model', 'model.id','=', 'vehicle.model_id')
->join('type', 'type.id','=', 'vehicle.type_id')
->where('vehicle_part.part_id','=', $parts[0]['id'])
->where('vehicle.active','=', true)
->orderBy('make.name', 'asc')
->orderBy('model.name','asc')
->orderBy('vehicle.year','desc');
})->paginate(10,[
in
/home/aftermarketstrat/public_html/manage/vendor/prettus/l5-repository/src/Prettus/Repository/Eloquent/BaseRepository.php
->
App\Http\Controllers\{closure}
(line 1033)
*/
protected function applyScope()
{
if (isset($this->scopeQuery) && is_callable($this->scopeQuery)) {
$callback = $this->scopeQuery;
$this->model = $callback($this->model);
}
return $this;
}
in
/home/aftermarketstrat/public_html/manage/vendor/prettus/l5-repository/src/Prettus/Repository/Eloquent/BaseRepository.php
->
applyScope
(line 485)
* @return mixed
*/
public function paginate($limit = null, $columns = ['*'], $method = "paginate")
{
$this->applyCriteria();
$this->applyScope();
$limit = is_null($limit) ? config('repository.pagination.limit', 15) : $limit;
$results = $this->model->{$method}($limit, $columns);
$results->appends(app('request')->query());
$this->resetModel();
BaseRepository->paginate()
in
/home/aftermarketstrat/public_html/manage/app/Http/Controllers/HomeController.php
(line 208)
->where('vehicle.active','=', true)
->orderBy('make.name', 'asc')
->orderBy('model.name','asc')
->orderBy('vehicle.year','desc');
})->paginate(10,[
'vehicle_part.*',
'vehicle.year',
'make.name as make_name',
'make.id as make_id',
'model.name as model_name',
'model.id as model_id',
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Controller.php
->
getPart
(line 54)
* @param array $parameters
* @return \Symfony\Component\HttpFoundation\Response
*/
public function callAction($method, $parameters)
{
return $this->{$method}(...array_values($parameters));
}
/**
* Handle calls to missing methods on the controller.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php
->
callAction
(line 43)
public function dispatch(Route $route, $controller, $method)
{
$parameters = $this->resolveParameters($route, $controller, $method);
if (method_exists($controller, 'callAction')) {
return $controller->callAction($method, $parameters);
}
return $controller->{$method}(...array_values($parameters));
}
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Route.php
->
dispatch
(line 260)
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
protected function runController()
{
return $this->controllerDispatcher()->dispatch(
$this, $this->getController(), $this->getControllerMethod()
);
}
/**
* Get the controller instance for the route.
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Route.php
->
runController
(line 205)
{
$this->container = $this->container ?: new Container;
try {
if ($this->isControllerAction()) {
return $this->runController();
}
return $this->runCallable();
} catch (HttpResponseException $e) {
return $e->getResponse();
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
run
(line 806)
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(fn ($request) => $this->prepareResponse(
$request, $route->run()
));
}
/**
* Gather the middleware for the given route with resolved class names.
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Routing\{closure}
(line 144)
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
}
Pipeline->Illuminate\Pipeline\{closure}()
in
/home/aftermarketstrat/public_html/manage/app/Http/Middleware/Language.php
(line 38)
$last = implode('/', $segments);
}
return redirect()->to($first.'/'.App::getLocale().'/'. $last);
}
return $next($request);
}
}
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php
->
Illuminate\Pipeline\{closure}
(line 50)
}
throw $exception;
}
return $next($request);
}
}
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php
->
Illuminate\Pipeline\{closure}
(line 78)
$this->isReading($request) ||
$this->runningUnitTests() ||
$this->inExceptArray($request) ||
$this->tokensMatch($request)
) {
return tap($next($request), function ($response) use ($request) {
if ($this->shouldAddXsrfTokenCookie()) {
$this->addCookieToResponse($request, $response);
}
});
}
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php
->
Illuminate\Pipeline\{closure}
(line 49)
// Putting the errors in the view for every view allows the developer to just
// assume that some errors are always available, which is convenient since
// they don't have to continually run checks for the presence of errors.
return $next($request);
}
}
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
->
Illuminate\Pipeline\{closure}
(line 121)
$this->startSession($request, $session)
);
$this->collectGarbage($session);
$response = $next($request);
$this->storeCurrentUrl($request, $session);
$this->addCookieToResponse($response, $session);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
->
handleStatefulRequest
(line 64)
if ($this->manager->shouldBlock() ||
($request->route() instanceof Route && $request->route()->locksFor())) {
return $this->handleRequestWhileBlocking($request, $session, $next);
}
return $this->handleStatefulRequest($request, $session, $next);
}
/**
* Handle the given request within session state.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php
->
Illuminate\Pipeline\{closure}
(line 37)
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$response = $next($request);
foreach ($this->cookies->getQueuedCookies() as $cookie) {
$response->headers->setCookie($cookie);
}
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php
->
Illuminate\Pipeline\{closure}
(line 67)
* @param \Closure $next
* @return \Symfony\Component\HttpFoundation\Response
*/
public function handle($request, Closure $next)
{
return $this->encrypt($next($this->decrypt($request)));
}
/**
* Decrypt the cookies on the request.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Pipeline\{closure}
(line 119)
{
$pipeline = array_reduce(
array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
then
(line 807)
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(fn ($request) => $this->prepareResponse(
$request, $route->run()
));
}
/**
* Gather the middleware for the given route with resolved class names.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
runRouteWithinStack
(line 784)
$request->setRouteResolver(fn () => $route);
$this->events->dispatch(new RouteMatched($route, $request));
return $this->prepareResponse($request,
$this->runRouteWithinStack($route, $request)
);
}
/**
* Run the given route within a Stack "onion" instance.
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
runRoute
(line 748)
* @param \Illuminate\Http\Request $request
* @return \Symfony\Component\HttpFoundation\Response
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Router.php
->
dispatchToRoute
(line 737)
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
dispatch
(line 200)
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Foundation\Http\{closure}
(line 144)
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
}
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php
->
Illuminate\Pipeline\{closure}
(line 49)
* @return \Illuminate\Http\Response
*/
public function handle($request, Closure $next)
{
if (! $this->hasMatchingPath($request)) {
return $next($request);
}
$this->cors->setOptions($this->container['config']->get('cors', []));
if ($this->cors->isPreflightRequest($request)) {
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php
->
Illuminate\Pipeline\{closure}
(line 39)
{
$request::setTrustedProxies([], $this->getTrustedHeaderNames());
$this->setTrustedProxyIpAddresses($request);
return $next($request);
}
/**
* Sets the trusted proxies on the request.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
->
Illuminate\Pipeline\{closure}
(line 21)
*/
public function handle($request, Closure $next)
{
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php
->
handle
(line 31)
if ($callback($request)) {
return $next($request);
}
}
return parent::handle($request, $next);
}
/**
* Transform the given value.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php
->
Illuminate\Pipeline\{closure}
(line 21)
*/
public function handle($request, Closure $next)
{
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php
->
handle
(line 40)
if ($callback($request)) {
return $next($request);
}
}
return parent::handle($request, $next);
}
/**
* Transform the given value.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php
->
Illuminate\Pipeline\{closure}
(line 27)
if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
throw new PostTooLargeException;
}
return $next($request);
}
/**
* Determine the server 'post_max_size' as bytes.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php
->
Illuminate\Pipeline\{closure}
(line 99)
null,
$this->getHeaders($data)
);
}
return $next($request);
}
/**
* Determine if the incoming request has a maintenance mode bypass cookie.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
handle
(line 183)
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
->
Illuminate\Pipeline\{closure}
(line 119)
{
$pipeline = array_reduce(
array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
then
(line 175)
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
in
/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
->
sendRequestThroughRouter
(line 144)
$this->requestStartedAt = Carbon::now();
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Throwable $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
}
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
Stack Trace
ErrorException
|
---|
ErrorException: Undefined array key 0 at /home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1753 at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:255) at Illuminate\Foundation\Bootstrap\HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1753) at Illuminate\Support\Collection->offsetGet() (/home/aftermarketstrat/public_html/manage/app/Http/Controllers/HomeController.php:202) at App\Http\Controllers\HomeController->App\Http\Controllers\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/prettus/l5-repository/src/Prettus/Repository/Eloquent/BaseRepository.php:1033) at Prettus\Repository\Eloquent\BaseRepository->applyScope() (/home/aftermarketstrat/public_html/manage/vendor/prettus/l5-repository/src/Prettus/Repository/Eloquent/BaseRepository.php:485) at Prettus\Repository\Eloquent\BaseRepository->paginate() (/home/aftermarketstrat/public_html/manage/app/Http/Controllers/HomeController.php:208) at App\Http\Controllers\HomeController->getPart() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54) at Illuminate\Routing\Controller->callAction() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43) at Illuminate\Routing\ControllerDispatcher->dispatch() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Route.php:260) at Illuminate\Routing\Route->runController() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Route.php:205) at Illuminate\Routing\Route->run() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Router.php:806) at Illuminate\Routing\Router->Illuminate\Routing\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/app/Http/Middleware/Language.php:38) at App\Http\Middleware\Language->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50) at Illuminate\Routing\Middleware\SubstituteBindings->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78) at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49) at Illuminate\View\Middleware\ShareErrorsFromSession->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121) at Illuminate\Session\Middleware\StartSession->handleStatefulRequest() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64) at Illuminate\Session\Middleware\StartSession->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37) at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67) at Illuminate\Cookie\Middleware\EncryptCookies->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119) at Illuminate\Pipeline\Pipeline->then() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Router.php:807) at Illuminate\Routing\Router->runRouteWithinStack() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Router.php:784) at Illuminate\Routing\Router->runRoute() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748) at Illuminate\Routing\Router->dispatchToRoute() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Routing/Router.php:737) at Illuminate\Routing\Router->dispatch() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200) at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:49) at Illuminate\Http\Middleware\HandleCors->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39) at Illuminate\Http\Middleware\TrustProxies->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21) at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31) at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21) at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40) at Illuminate\Foundation\Http\Middleware\TrimStrings->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27) at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:99) at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183) at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119) at Illuminate\Pipeline\Pipeline->then() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175) at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter() (/home/aftermarketstrat/public_html/manage/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144) at Illuminate\Foundation\Http\Kernel->handle() (/home/aftermarketstrat/public_html/manage/public/index.php:55) |