Symfony Exception

RuntimeError

HTTP 500 Internal Server Error

Impossible to access a key ("0") on a null variable.

Exception

Twig\Error\ RuntimeError

  1.             <table class="transcript-table" title="Transcription">
  2.               <thead>
  3.               <tr>
  4.                 <th>
  5.                     {{ transcription[0].script }}
  6.                 </th>
  7.                 <th>
  8.                     {{ transcription[0].visual }}
  9.                 </th>
  1.               <thead>
  2.               <tr>
  3.                 <th>
  4.                     ";
  5.         // line 112
  6.         echo twig_escape_filter($this->envtwig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["transcription"]) || array_key_exists("transcription"$context) ? $context["transcription"] : (function () { throw new RuntimeError('Variable "transcription" does not exist.'112$this->source); })()), 0, [], "array"falsefalsefalse112), "script", [], "any"falsefalsefalse112), "html"nulltrue);
  7.         echo "
  8.                 </th>
  9.                 <th>
  10.                     ";
in vendor/twig/twig/src/Template.php -> block_body (line 171)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         $this->loadTemplate("common/allow-cookies-popup.html.twig""/base.html.twig"90)->display($context);
  2.         // line 91
  3.         echo "
  4.     ";
  5.         // line 92
  6.         $this->displayBlock('body'$context$blocks);
  7.         // line 93
  8.         echo "
  9.     ";
  10.         // line 94
  11.         $this->displayBlock('schema'$context$blocks);
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""franchise/franchise-subpages/transcription/franchiseTranscriptionHomepage.html.twig"));
  3.         $this->parent $this->loadTemplate("base.html.twig""franchise/franchise-subpages/transcription/franchiseTranscriptionHomepage.html.twig"1);
  4.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  5.         
  6.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  7.         
  8.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 379)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.     public function render(array $context = []): string
  2.     {
  3.         // using func_get_args() allows to not expose the blocks argument
  4.         // as it should only be used by internal code
  5.         return $this->template->render($context, \func_get_args()[1] ?? []);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You can not use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('franchise/franchise-subpages/transcription/franchiseTranscriptionHomepage.html.twig', array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2> <p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p> <h2>About Ford Certified Collision Repair Services</h2> <p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish. </p> <h2>EXPERTISE THAT BUILDS CONFIDENCE </h2> <p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p> <h2>KEEPING YOUR FORD A FORD</h2> <p>We understand the importance of working with original Ford parts to help achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p> <h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2> <p>Naturally, safety is an FCCN priority. We will diligently identify and address safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p> <img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397"> ', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings. Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings. Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false)) in src/Controller/FranchiseController.php (line 285)
  1.         $this->params["title"] = $title;
  2.         $this->params["store"] = $store;
  3.         $this->params["transcription"] = $transcription;
  4.         $this->params['isMobile'] = $detectMobile->detectMobile();
  5.         return $this->render('franchise/franchise-subpages/transcription/franchiseTranscriptionHomepage.html.twig'$this->params);
  6.     }
  7.     /**
  8.      * @Route("/{state}/{city}-{store_id}/{service_type}-/", name="catchCenterLevelServicesErrors" , requirements={"city"="(?=[a-z])([A-Za-z-]+[A-Za-z-])(?=-[\d+])","service_type"="(\w+-\w+|\w+)"})
  9.      */
in vendor/symfony/http-kernel/HttpKernel.php -> franchiseTranscription (line 152)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 20)
  1.     Debug::enable();
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 11:48:07 php User Deprecated: Since symfony/http-kernel 5.4: Passing a $fileLinkFormat is deprecated.
{
    "exception": {}
}
INFO 11:48:07 request Matched route "franchiseTranscription".
{
    "route": "franchiseTranscription",
    "route_parameters": {
        "_route": "franchiseTranscription",
        "_controller": "App\\Controller\\FranchiseController::franchiseTranscription",
        "state": "wa",
        "city": "puyallup",
        "store_id": "15380",
        "video_id": "x3co7ksz5rw"
    },
    "request_uri": "https://locations.carstar.com/wa/puyallup-15380/transcription-x3co7ksz5rw/",
    "method": "GET"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "App\EventListeners\TokenListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "App\\EventListeners\\TokenListener::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 11:48:07 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 11:48:07 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
CRITICAL 11:48:07 request Uncaught PHP Exception Twig\Error\RuntimeError: "Impossible to access a key ("0") on a null variable." at /var/www/carstar-locations/public_html/templates/franchise/franchise-subpages/transcription/franchiseTranscriptionHomepage.html.twig line 112
{
    "exception": {}
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "App\EventListeners\TokenListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "App\\EventListeners\\TokenListener::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 11:48:07 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 11:48:07 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}

Stack Trace

RuntimeError
Twig\Error\RuntimeError:
Impossible to access a key ("0") on a null variable.

  at templates/franchise/franchise-subpages/transcription/franchiseTranscriptionHomepage.html.twig:112
  at twig_get_attribute(object(Environment), object(Source), null, 0, array(), 'array', false, false, false, 112)
     (var/cache/dev/twig/95/95f7fddee2f419b06a76856d1e897cae51dad641ce744743a4f00f38c0c5b219.php:312)
  at __TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f->block_body(array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false, 'app' => object(AppVariable), 'local_path' => 'https://www.carstar.com/locations/', 'parent_app_url' => 'https://www.carstar.com/locations/', 'parent_app_base_url' => 'https://www.carstar.com/', 'google_maps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'project_key' => 'carstar', 'app_domain' => 'carstar.com', 'project_title' => 'CARSTAR', 'app_canadian' => false, 'app_search_placeholder_us' => 'City, State or Zip', 'app_search_placeholder_ca' => 'CITY, PROVINCE OR POSTAL CODE', 'app_search_distance_unit_us' => 'mi', 'app_search_distance_unit_ca' => 'km', 'app_default_base_title' => 'Carstar US Locations', 'app_default_canonical_url' => 'https://www.carstar.com', 'app_fb_url' => 'https://www.facebook.com/CARSTAR/?ref=br_rs', 'app_google_url' => '', 'app_twitter_url' => 'https://twitter.com/CARSTARAutoBody', 'app_youtube_url' => 'https://www.youtube.com/channel/UCMDDuZ8Pf4SLvwJfSr8rsUw?view_as=subscriber', 'app_pinterest_url' => '', 'app_linkedin_url' => 'https://www.linkedin.com/company/98581/', 'app_default_locations_title' => 'Locations | Carstar', 'app_default_locations_description' => 'Find a CARSTAR Auto Body Repair Experts center near you. We provide the highest quality collision repair from coast to coast. Call us at 1-800-CARSTAR.', 'app_marchex_acct_id' => 'Ch4Nm1jTEg8orwCo', 'app_marchex_src' => 'Ch4Nm1jTEg8orwCo', 'app_fb_trk_id' => '', 'app_control_tag_scripts_kxct' => '', 'app_location_meta_description' => 'Visit our trustworthy auto body shop located in :locationCity, :locationState :locationPostalCode. Expert-quality auto body works, paintless dent and scratch repair.', 'app_location_title' => 'CARSTAR :locationCity - Local Collision Repair Experts in :locationCity, :locationState', 'app_dma_meta_description' => 'Call a shop located in :dmaName now for Auto Body Shop services you can rely on!', 'app_dma_title' => 'Auto Paint & Collision | :dmaName\'s locations | CARSTAR.com', 'app_coupons_meta_description' => '', 'app_coupons_title' => '', 'app_environment' => 'dev', 'api_url' => 'https://api.carstar.com/api/', 'gmaps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'current_app_base_url' => 'https://locations.carstar.com/', 'favorite_store_cookie_name' => 'preferred_store', 'store_ctas' => 'call|directions|deals', 'store_appointment_ctas' => 'makeAppointment', 'cdn_front_theme_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/front/', 'cdn_base_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/', 'brand_phone_number' => '1(800) 227-7827', 'brand_phone_number_raw' => '18002277827', 'dev_gtm' => 'GTM-NFT59BW', 'live_gtm' => 'GTM-NFT59BW', 'dev_ga4' => 'G-6XF4N48TDZ', 'live_ga4' => 'G-6XF4N48TDZ', 'shareableClass' => ''), array('title' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_title'), 'metadata' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_metadata'), 'description' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_description'), 'robots' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_robots'), 'stylesheets' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascripts'), 'canonical' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_canonical'), 'metaindex' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_metaindex'), 'metafacebook' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_metafacebook'), 'javascriptsChatPerStoreHead' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascriptsChatPerStoreHead'), 'body' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_body'), 'schema' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_schema'), 'podiumWebchat' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_podiumWebchat'), 'scripts' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_scripts'), 'javascriptsChatPerStoreBody' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascriptsChatPerStoreBody')))
     (vendor/twig/twig/src/Template.php:171)
  at Twig\Template->displayBlock('body', array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false, 'app' => object(AppVariable), 'local_path' => 'https://www.carstar.com/locations/', 'parent_app_url' => 'https://www.carstar.com/locations/', 'parent_app_base_url' => 'https://www.carstar.com/', 'google_maps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'project_key' => 'carstar', 'app_domain' => 'carstar.com', 'project_title' => 'CARSTAR', 'app_canadian' => false, 'app_search_placeholder_us' => 'City, State or Zip', 'app_search_placeholder_ca' => 'CITY, PROVINCE OR POSTAL CODE', 'app_search_distance_unit_us' => 'mi', 'app_search_distance_unit_ca' => 'km', 'app_default_base_title' => 'Carstar US Locations', 'app_default_canonical_url' => 'https://www.carstar.com', 'app_fb_url' => 'https://www.facebook.com/CARSTAR/?ref=br_rs', 'app_google_url' => '', 'app_twitter_url' => 'https://twitter.com/CARSTARAutoBody', 'app_youtube_url' => 'https://www.youtube.com/channel/UCMDDuZ8Pf4SLvwJfSr8rsUw?view_as=subscriber', 'app_pinterest_url' => '', 'app_linkedin_url' => 'https://www.linkedin.com/company/98581/', 'app_default_locations_title' => 'Locations | Carstar', 'app_default_locations_description' => 'Find a CARSTAR Auto Body Repair Experts center near you. We provide the highest quality collision repair from coast to coast. Call us at 1-800-CARSTAR.', 'app_marchex_acct_id' => 'Ch4Nm1jTEg8orwCo', 'app_marchex_src' => 'Ch4Nm1jTEg8orwCo', 'app_fb_trk_id' => '', 'app_control_tag_scripts_kxct' => '', 'app_location_meta_description' => 'Visit our trustworthy auto body shop located in :locationCity, :locationState :locationPostalCode. Expert-quality auto body works, paintless dent and scratch repair.', 'app_location_title' => 'CARSTAR :locationCity - Local Collision Repair Experts in :locationCity, :locationState', 'app_dma_meta_description' => 'Call a shop located in :dmaName now for Auto Body Shop services you can rely on!', 'app_dma_title' => 'Auto Paint & Collision | :dmaName\'s locations | CARSTAR.com', 'app_coupons_meta_description' => '', 'app_coupons_title' => '', 'app_environment' => 'dev', 'api_url' => 'https://api.carstar.com/api/', 'gmaps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'current_app_base_url' => 'https://locations.carstar.com/', 'favorite_store_cookie_name' => 'preferred_store', 'store_ctas' => 'call|directions|deals', 'store_appointment_ctas' => 'makeAppointment', 'cdn_front_theme_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/front/', 'cdn_base_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/', 'brand_phone_number' => '1(800) 227-7827', 'brand_phone_number_raw' => '18002277827', 'dev_gtm' => 'GTM-NFT59BW', 'live_gtm' => 'GTM-NFT59BW', 'dev_ga4' => 'G-6XF4N48TDZ', 'live_ga4' => 'G-6XF4N48TDZ', 'shareableClass' => ''), array('title' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_title'), 'metadata' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_metadata'), 'description' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_description'), 'robots' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_robots'), 'stylesheets' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascripts'), 'canonical' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_canonical'), 'metaindex' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_metaindex'), 'metafacebook' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_metafacebook'), 'javascriptsChatPerStoreHead' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascriptsChatPerStoreHead'), 'body' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_body'), 'schema' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_schema'), 'podiumWebchat' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_podiumWebchat'), 'scripts' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_scripts'), 'javascriptsChatPerStoreBody' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascriptsChatPerStoreBody')))
     (var/cache/dev/twig/7e/7eeb92211568ac2ceba72b824c93884d73c7530c9be926bf6ef16020bea78ea8.php:265)
  at __TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3->doDisplay(array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false, 'app' => object(AppVariable), 'local_path' => 'https://www.carstar.com/locations/', 'parent_app_url' => 'https://www.carstar.com/locations/', 'parent_app_base_url' => 'https://www.carstar.com/', 'google_maps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'project_key' => 'carstar', 'app_domain' => 'carstar.com', 'project_title' => 'CARSTAR', 'app_canadian' => false, 'app_search_placeholder_us' => 'City, State or Zip', 'app_search_placeholder_ca' => 'CITY, PROVINCE OR POSTAL CODE', 'app_search_distance_unit_us' => 'mi', 'app_search_distance_unit_ca' => 'km', 'app_default_base_title' => 'Carstar US Locations', 'app_default_canonical_url' => 'https://www.carstar.com', 'app_fb_url' => 'https://www.facebook.com/CARSTAR/?ref=br_rs', 'app_google_url' => '', 'app_twitter_url' => 'https://twitter.com/CARSTARAutoBody', 'app_youtube_url' => 'https://www.youtube.com/channel/UCMDDuZ8Pf4SLvwJfSr8rsUw?view_as=subscriber', 'app_pinterest_url' => '', 'app_linkedin_url' => 'https://www.linkedin.com/company/98581/', 'app_default_locations_title' => 'Locations | Carstar', 'app_default_locations_description' => 'Find a CARSTAR Auto Body Repair Experts center near you. We provide the highest quality collision repair from coast to coast. Call us at 1-800-CARSTAR.', 'app_marchex_acct_id' => 'Ch4Nm1jTEg8orwCo', 'app_marchex_src' => 'Ch4Nm1jTEg8orwCo', 'app_fb_trk_id' => '', 'app_control_tag_scripts_kxct' => '', 'app_location_meta_description' => 'Visit our trustworthy auto body shop located in :locationCity, :locationState :locationPostalCode. Expert-quality auto body works, paintless dent and scratch repair.', 'app_location_title' => 'CARSTAR :locationCity - Local Collision Repair Experts in :locationCity, :locationState', 'app_dma_meta_description' => 'Call a shop located in :dmaName now for Auto Body Shop services you can rely on!', 'app_dma_title' => 'Auto Paint & Collision | :dmaName\'s locations | CARSTAR.com', 'app_coupons_meta_description' => '', 'app_coupons_title' => '', 'app_environment' => 'dev', 'api_url' => 'https://api.carstar.com/api/', 'gmaps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'current_app_base_url' => 'https://locations.carstar.com/', 'favorite_store_cookie_name' => 'preferred_store', 'store_ctas' => 'call|directions|deals', 'store_appointment_ctas' => 'makeAppointment', 'cdn_front_theme_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/front/', 'cdn_base_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/', 'brand_phone_number' => '1(800) 227-7827', 'brand_phone_number_raw' => '18002277827', 'dev_gtm' => 'GTM-NFT59BW', 'live_gtm' => 'GTM-NFT59BW', 'dev_ga4' => 'G-6XF4N48TDZ', 'live_ga4' => 'G-6XF4N48TDZ', 'shareableClass' => ''), array('title' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_title'), 'metadata' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_metadata'), 'description' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_description'), 'robots' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_robots'), 'stylesheets' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascripts'), 'canonical' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_canonical'), 'metaindex' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_metaindex'), 'metafacebook' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_metafacebook'), 'javascriptsChatPerStoreHead' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascriptsChatPerStoreHead'), 'body' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_body'), 'schema' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_schema'), 'podiumWebchat' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_podiumWebchat'), 'scripts' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_scripts'), 'javascriptsChatPerStoreBody' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascriptsChatPerStoreBody')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false, 'app' => object(AppVariable), 'local_path' => 'https://www.carstar.com/locations/', 'parent_app_url' => 'https://www.carstar.com/locations/', 'parent_app_base_url' => 'https://www.carstar.com/', 'google_maps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'project_key' => 'carstar', 'app_domain' => 'carstar.com', 'project_title' => 'CARSTAR', 'app_canadian' => false, 'app_search_placeholder_us' => 'City, State or Zip', 'app_search_placeholder_ca' => 'CITY, PROVINCE OR POSTAL CODE', 'app_search_distance_unit_us' => 'mi', 'app_search_distance_unit_ca' => 'km', 'app_default_base_title' => 'Carstar US Locations', 'app_default_canonical_url' => 'https://www.carstar.com', 'app_fb_url' => 'https://www.facebook.com/CARSTAR/?ref=br_rs', 'app_google_url' => '', 'app_twitter_url' => 'https://twitter.com/CARSTARAutoBody', 'app_youtube_url' => 'https://www.youtube.com/channel/UCMDDuZ8Pf4SLvwJfSr8rsUw?view_as=subscriber', 'app_pinterest_url' => '', 'app_linkedin_url' => 'https://www.linkedin.com/company/98581/', 'app_default_locations_title' => 'Locations | Carstar', 'app_default_locations_description' => 'Find a CARSTAR Auto Body Repair Experts center near you. We provide the highest quality collision repair from coast to coast. Call us at 1-800-CARSTAR.', 'app_marchex_acct_id' => 'Ch4Nm1jTEg8orwCo', 'app_marchex_src' => 'Ch4Nm1jTEg8orwCo', 'app_fb_trk_id' => '', 'app_control_tag_scripts_kxct' => '', 'app_location_meta_description' => 'Visit our trustworthy auto body shop located in :locationCity, :locationState :locationPostalCode. Expert-quality auto body works, paintless dent and scratch repair.', 'app_location_title' => 'CARSTAR :locationCity - Local Collision Repair Experts in :locationCity, :locationState', 'app_dma_meta_description' => 'Call a shop located in :dmaName now for Auto Body Shop services you can rely on!', 'app_dma_title' => 'Auto Paint & Collision | :dmaName\'s locations | CARSTAR.com', 'app_coupons_meta_description' => '', 'app_coupons_title' => '', 'app_environment' => 'dev', 'api_url' => 'https://api.carstar.com/api/', 'gmaps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'current_app_base_url' => 'https://locations.carstar.com/', 'favorite_store_cookie_name' => 'preferred_store', 'store_ctas' => 'call|directions|deals', 'store_appointment_ctas' => 'makeAppointment', 'cdn_front_theme_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/front/', 'cdn_base_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/', 'brand_phone_number' => '1(800) 227-7827', 'brand_phone_number_raw' => '18002277827', 'dev_gtm' => 'GTM-NFT59BW', 'live_gtm' => 'GTM-NFT59BW', 'dev_ga4' => 'G-6XF4N48TDZ', 'live_ga4' => 'G-6XF4N48TDZ'), array('title' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_title'), 'metadata' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_metadata'), 'description' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_description'), 'robots' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_robots'), 'stylesheets' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascripts'), 'canonical' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_canonical'), 'metaindex' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_metaindex'), 'metafacebook' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_metafacebook'), 'javascriptsChatPerStoreHead' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascriptsChatPerStoreHead'), 'body' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_body'), 'schema' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_schema'), 'podiumWebchat' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_podiumWebchat'), 'scripts' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_scripts'), 'javascriptsChatPerStoreBody' => array(object(__TwigTemplate_68f46bf068eb28e395d04e5282b53f006e1f27392682451d2ed186ddc70e4fe3), 'block_javascriptsChatPerStoreBody')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false, 'app' => object(AppVariable), 'local_path' => 'https://www.carstar.com/locations/', 'parent_app_url' => 'https://www.carstar.com/locations/', 'parent_app_base_url' => 'https://www.carstar.com/', 'google_maps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'project_key' => 'carstar', 'app_domain' => 'carstar.com', 'project_title' => 'CARSTAR', 'app_canadian' => false, 'app_search_placeholder_us' => 'City, State or Zip', 'app_search_placeholder_ca' => 'CITY, PROVINCE OR POSTAL CODE', 'app_search_distance_unit_us' => 'mi', 'app_search_distance_unit_ca' => 'km', 'app_default_base_title' => 'Carstar US Locations', 'app_default_canonical_url' => 'https://www.carstar.com', 'app_fb_url' => 'https://www.facebook.com/CARSTAR/?ref=br_rs', 'app_google_url' => '', 'app_twitter_url' => 'https://twitter.com/CARSTARAutoBody', 'app_youtube_url' => 'https://www.youtube.com/channel/UCMDDuZ8Pf4SLvwJfSr8rsUw?view_as=subscriber', 'app_pinterest_url' => '', 'app_linkedin_url' => 'https://www.linkedin.com/company/98581/', 'app_default_locations_title' => 'Locations | Carstar', 'app_default_locations_description' => 'Find a CARSTAR Auto Body Repair Experts center near you. We provide the highest quality collision repair from coast to coast. Call us at 1-800-CARSTAR.', 'app_marchex_acct_id' => 'Ch4Nm1jTEg8orwCo', 'app_marchex_src' => 'Ch4Nm1jTEg8orwCo', 'app_fb_trk_id' => '', 'app_control_tag_scripts_kxct' => '', 'app_location_meta_description' => 'Visit our trustworthy auto body shop located in :locationCity, :locationState :locationPostalCode. Expert-quality auto body works, paintless dent and scratch repair.', 'app_location_title' => 'CARSTAR :locationCity - Local Collision Repair Experts in :locationCity, :locationState', 'app_dma_meta_description' => 'Call a shop located in :dmaName now for Auto Body Shop services you can rely on!', 'app_dma_title' => 'Auto Paint & Collision | :dmaName\'s locations | CARSTAR.com', 'app_coupons_meta_description' => '', 'app_coupons_title' => '', 'app_environment' => 'dev', 'api_url' => 'https://api.carstar.com/api/', 'gmaps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'current_app_base_url' => 'https://locations.carstar.com/', 'favorite_store_cookie_name' => 'preferred_store', 'store_ctas' => 'call|directions|deals', 'store_appointment_ctas' => 'makeAppointment', 'cdn_front_theme_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/front/', 'cdn_base_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/', 'brand_phone_number' => '1(800) 227-7827', 'brand_phone_number_raw' => '18002277827', 'dev_gtm' => 'GTM-NFT59BW', 'live_gtm' => 'GTM-NFT59BW', 'dev_ga4' => 'G-6XF4N48TDZ', 'live_ga4' => 'G-6XF4N48TDZ'), array('title' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_title'), 'metaindex' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_metaindex'), 'description' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_description'), 'canonical' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_canonical'), 'body' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_body')))
     (var/cache/dev/twig/95/95f7fddee2f419b06a76856d1e897cae51dad641ce744743a4f00f38c0c5b219.php:52)
  at __TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f->doDisplay(array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false, 'app' => object(AppVariable), 'local_path' => 'https://www.carstar.com/locations/', 'parent_app_url' => 'https://www.carstar.com/locations/', 'parent_app_base_url' => 'https://www.carstar.com/', 'google_maps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'project_key' => 'carstar', 'app_domain' => 'carstar.com', 'project_title' => 'CARSTAR', 'app_canadian' => false, 'app_search_placeholder_us' => 'City, State or Zip', 'app_search_placeholder_ca' => 'CITY, PROVINCE OR POSTAL CODE', 'app_search_distance_unit_us' => 'mi', 'app_search_distance_unit_ca' => 'km', 'app_default_base_title' => 'Carstar US Locations', 'app_default_canonical_url' => 'https://www.carstar.com', 'app_fb_url' => 'https://www.facebook.com/CARSTAR/?ref=br_rs', 'app_google_url' => '', 'app_twitter_url' => 'https://twitter.com/CARSTARAutoBody', 'app_youtube_url' => 'https://www.youtube.com/channel/UCMDDuZ8Pf4SLvwJfSr8rsUw?view_as=subscriber', 'app_pinterest_url' => '', 'app_linkedin_url' => 'https://www.linkedin.com/company/98581/', 'app_default_locations_title' => 'Locations | Carstar', 'app_default_locations_description' => 'Find a CARSTAR Auto Body Repair Experts center near you. We provide the highest quality collision repair from coast to coast. Call us at 1-800-CARSTAR.', 'app_marchex_acct_id' => 'Ch4Nm1jTEg8orwCo', 'app_marchex_src' => 'Ch4Nm1jTEg8orwCo', 'app_fb_trk_id' => '', 'app_control_tag_scripts_kxct' => '', 'app_location_meta_description' => 'Visit our trustworthy auto body shop located in :locationCity, :locationState :locationPostalCode. Expert-quality auto body works, paintless dent and scratch repair.', 'app_location_title' => 'CARSTAR :locationCity - Local Collision Repair Experts in :locationCity, :locationState', 'app_dma_meta_description' => 'Call a shop located in :dmaName now for Auto Body Shop services you can rely on!', 'app_dma_title' => 'Auto Paint & Collision | :dmaName\'s locations | CARSTAR.com', 'app_coupons_meta_description' => '', 'app_coupons_title' => '', 'app_environment' => 'dev', 'api_url' => 'https://api.carstar.com/api/', 'gmaps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'current_app_base_url' => 'https://locations.carstar.com/', 'favorite_store_cookie_name' => 'preferred_store', 'store_ctas' => 'call|directions|deals', 'store_appointment_ctas' => 'makeAppointment', 'cdn_front_theme_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/front/', 'cdn_base_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/', 'brand_phone_number' => '1(800) 227-7827', 'brand_phone_number_raw' => '18002277827', 'dev_gtm' => 'GTM-NFT59BW', 'live_gtm' => 'GTM-NFT59BW', 'dev_ga4' => 'G-6XF4N48TDZ', 'live_ga4' => 'G-6XF4N48TDZ'), array('title' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_title'), 'metaindex' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_metaindex'), 'description' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_description'), 'canonical' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_canonical'), 'body' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_body')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false, 'app' => object(AppVariable), 'local_path' => 'https://www.carstar.com/locations/', 'parent_app_url' => 'https://www.carstar.com/locations/', 'parent_app_base_url' => 'https://www.carstar.com/', 'google_maps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'project_key' => 'carstar', 'app_domain' => 'carstar.com', 'project_title' => 'CARSTAR', 'app_canadian' => false, 'app_search_placeholder_us' => 'City, State or Zip', 'app_search_placeholder_ca' => 'CITY, PROVINCE OR POSTAL CODE', 'app_search_distance_unit_us' => 'mi', 'app_search_distance_unit_ca' => 'km', 'app_default_base_title' => 'Carstar US Locations', 'app_default_canonical_url' => 'https://www.carstar.com', 'app_fb_url' => 'https://www.facebook.com/CARSTAR/?ref=br_rs', 'app_google_url' => '', 'app_twitter_url' => 'https://twitter.com/CARSTARAutoBody', 'app_youtube_url' => 'https://www.youtube.com/channel/UCMDDuZ8Pf4SLvwJfSr8rsUw?view_as=subscriber', 'app_pinterest_url' => '', 'app_linkedin_url' => 'https://www.linkedin.com/company/98581/', 'app_default_locations_title' => 'Locations | Carstar', 'app_default_locations_description' => 'Find a CARSTAR Auto Body Repair Experts center near you. We provide the highest quality collision repair from coast to coast. Call us at 1-800-CARSTAR.', 'app_marchex_acct_id' => 'Ch4Nm1jTEg8orwCo', 'app_marchex_src' => 'Ch4Nm1jTEg8orwCo', 'app_fb_trk_id' => '', 'app_control_tag_scripts_kxct' => '', 'app_location_meta_description' => 'Visit our trustworthy auto body shop located in :locationCity, :locationState :locationPostalCode. Expert-quality auto body works, paintless dent and scratch repair.', 'app_location_title' => 'CARSTAR :locationCity - Local Collision Repair Experts in :locationCity, :locationState', 'app_dma_meta_description' => 'Call a shop located in :dmaName now for Auto Body Shop services you can rely on!', 'app_dma_title' => 'Auto Paint & Collision | :dmaName\'s locations | CARSTAR.com', 'app_coupons_meta_description' => '', 'app_coupons_title' => '', 'app_environment' => 'dev', 'api_url' => 'https://api.carstar.com/api/', 'gmaps_api_key' => 'AIzaSyDulT0T9pXHl4aHeIo8OIsDDYc3wJO18To', 'current_app_base_url' => 'https://locations.carstar.com/', 'favorite_store_cookie_name' => 'preferred_store', 'store_ctas' => 'call|directions|deals', 'store_appointment_ctas' => 'makeAppointment', 'cdn_front_theme_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/front/', 'cdn_base_url' => 'https://d3n2zmi3lgzln3.cloudfront.net/', 'brand_phone_number' => '1(800) 227-7827', 'brand_phone_number_raw' => '18002277827', 'dev_gtm' => 'GTM-NFT59BW', 'live_gtm' => 'GTM-NFT59BW', 'dev_ga4' => 'G-6XF4N48TDZ', 'live_ga4' => 'G-6XF4N48TDZ'), array('title' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_title'), 'metaindex' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_metaindex'), 'description' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_description'), 'canonical' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_canonical'), 'body' => array(object(__TwigTemplate_2db9a5b05f677b43fb7cbf1e9915e6b62c974f5de98e8af273fcae77d165ab5f), 'block_body')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false))
     (vendor/twig/twig/src/Environment.php:277)
  at Twig\Environment->render('franchise/franchise-subpages/transcription/franchiseTranscriptionHomepage.html.twig', array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:249)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('franchise/franchise-subpages/transcription/franchiseTranscriptionHomepage.html.twig', array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:257)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('franchise/franchise-subpages/transcription/franchiseTranscriptionHomepage.html.twig', array('api.url' => 'https://api.carstar.com/api/', 'myCarstar' => null, 'noScheduleStores' => array('15424', '15372'), 'city' => 'puyallup', 'videoId' => 'x3co7ksz5rw', 'state' => 'wa', 'store_id' => '15380', 'title' => 'Cornforth Campbell CARSTAR North - Puyallup, WA', 'store' => array('id' => 1838, 'storeId' => 15380, 'storeName' => 'Cornforth Campbell CARSTAR North', 'atTheShopDescription' => '', 'streetAddress1' => '407 East Main Ave.', 'streetAddress2' => '', 'locationCity' => 'Puyallup', 'locationState' => 'WA', 'locationPostalCode' => '98372', 'locationRegion' => '', 'locationCountry' => 'US', 'locationEmail' => 'cornforth-campbellNorth@carstarusa.com', 'locationEmailAlt' => '', 'locationStatus' => 'OPEN', 'phone' => '(253) 845-1721', 'rawPhone' => '2538451721', 'semCamPhone' => '(253) 845-1721', 'rawSemCamPhone' => '2538451721', 'trackingPhone' => '', 'rawTrackingPhone' => '', 'lng' => '-122.29', 'lat' => '47.1922', 'storeURL' => '', 'oldSlug' => '', 'facebookURL' => '', 'googleplusURL' => '', 'yelpURL' => '', 'yellowPagesURL' => '', 'foursquareURL' => '', 'videoLink' => '', 'primaryContact' => '', 'ownerSince' => '', 'hoursWeekdayOpen' => '', 'hoursWeekdayClose' => '', 'hoursSaturdayOpen' => '', 'hoursSaturdayClose' => '', 'hoursSundayOpen' => '', 'hoursSundayClose' => '', 'isWorkday' => true, 'isWeekend' => '', 'locationDirections' => '', 'starRating' => '', 'openDate' => '', 'americanExpress' => '', 'visa' => true, 'certificateASE' => '', 'dinersClub' => '', 'discover' => '', 'mastercard' => true, 'meinekeCreditCard' => '', 'carCareOne' => '', 'militaryDiscount' => '', 'seniorDiscount' => '', 'aaaDiscount' => '', 'communityServiceDiscount' => '', 'customerLoyaltyDiscount' => '', 'customerBadge' => '', 'smallLabel' => '', 'bannerImage' => '', 'isFeatured' => '', 'orderFeaturedIdx' => '', 'hasFullSlate' => '', 'optin' => '', 'hasVeterans' => '', 'type' => '', 'isFleet' => '', 'maacoCertified' => '', 'certificateICarGold' => true, 'certificateICarPlatinum' => '', 'certificateAssuredPerformance' => '', 'certificateVerifacts' => '', 'certificateVerifactsVQ' => '', 'certificateFCA' => '', 'certificateFord' => true, 'certificateGM' => '', 'certificateProFirst' => true, 'certificateHyundai' => '', 'certificateHyundaiCertified' => '', 'certificateInfiniti' => '', 'certificateNissan' => '', 'certificateServiceMaster' => '', 'certificateEStar' => '', 'certificateNationalAward' => '', 'certificateKia' => '', 'hertz' => '', 'hasChat' => '', 'enterprise' => '', 'ace' => '', 'aceLink' => '', 'vision' => '', 'cccOneScheduler' => '<div class="CWScheduling" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Schedule online appointment on carwise.com">Schedule online appointment for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/scheduling-plugin/601639/resources/js/plugin.js" async></script>', 'locationStateFull' => 'Washington', 'locationCitySlug' => 'puyallup', 'longitude' => '-122.29', 'latitude' => '47.1922', 'openStatus' => 'open now', 'franchiseSchedule' => array('WORKDAY' => '8:00 AM - 5:00 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'appointmentSchedule' => array('WORKDAY' => '7:30 AM - 5:30 PM', 'SATURDAY' => 'Closed', 'SUNDAY' => 'Closed', 'isWorkday' => 1, 'isWeekend' => 0), 'holidays' => array('2021-12-24' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null), '2021-12-31' => array('availability' => 'CLOSED', 'openTime' => null, 'closedTime' => null)), 'photos' => array(), 'certificates' => array(array('id' => 21, 'name' => 'Subaru', 'description' => null, 'logo' => 'certificatesubaru.png', 'slug' => null), array('id' => 1, 'name' => 'I-CAR Gold', 'description' => null, 'logo' => 'certificateicargold.png', 'slug' => null), array('id' => 10, 'name' => 'Honda Pro First (Honda/Acura)', 'description' => null, 'logo' => 'certificateprofirst.png', 'slug' => null), array('id' => 8, 'name' => 'Ford', 'description' => '<h2>What Does It Mean To Be Certified?</h2>
<p>When choosing a certified CARSTAR location, you can rest assured that your car is repaired to Original Equipment Manufacturer (OEM) standards—meaning your car performs like it would in pre-accident condition. Our stores take an extra step to obtain OEM certifications to offer a higher standard of service and commitment to our customers. Vehicle manufacturers set standards to ensure collision facilities are able to repair the vehicle safely, protect the vehicle brand and use quality parts.</p>
<h2>About Ford Certified Collision Repair Services</h2>
<p>Thank you for entrusting your vehicle to our care. We realize nobody enjoys dealing with a collision matter. We’re here to make your experience as stress-free as possible from start to finish.
</p>
<h2>EXPERTISE THAT BUILDS CONFIDENCE
</h2>
<p>We are a proud member of the Ford Certified Collision Network (FCCN). You can have the full confidence of knowing we have professionals trained in the right repair procedures, with the proper equipment and the expertise to get your vehicle back to its pre-accident condition. Our reputation for consistent, high-quality work does not happen by accident (so to speak). Every FCCN Collision Center undergoes an annual assessment by Ford. This helps to ensure that the highest quality standards are being met on the repair of your vehicle.</p>
<h2>KEEPING YOUR FORD A FORD</h2>
<p>We understand the importance of working with original Ford parts to help
achieve optimum fit and function. It’s our policy to use them whenever possible. We also stay current on all the latest technology and material advancements. In this way, we can replace damaged parts with parts specifically designed to restore and maintain the integrity of your vehicle.</p>
<h2>AS ALWAYS, YOUR SAFETY IS A PRIORITY</h2>
<p>Naturally, safety is an FCCN priority. We will diligently identify and address
safety-related details that apply to the repair of your vehicle. Everything we do is designed to put your mind at ease. We can assure you that your choice to bring your vehicle here was the best one you could make. Because we’re an FCCN Collision Center. And we’ve got this.</p>
<img class="img-responsive w-100 margin-bottom-3" src="https://d3n2zmi3lgzln3.cloudfront.net/resources/front/images/about/landing/ford.png" alt="ford" width="551" height="397">
', 'logo' => 'certificateford.png', 'slug' => 'ford')), 'cccOneEstimator' => '<div class="CWPhotoEstimate" data-domain="https://www.carwise.com" data-rfid="601639" data-type="button" data-theme="dg_1 m1" data-size="m" ><a rel="nofollow" href="https://www.carwise.com/auto-body-shops/carstar-cornforth-campbell-n-puyallup-wa-98372/601639" target="_blank" title="Request an Estimate on carwise.com">Request an Estimate for our auto body shop on carwise.com</a> - Find our <a rel="nofollow" rel="nofollow" href="https://www.carwise.com">Auto Body Shop</a> on carwise.com</div><script type="text/javascript" src="https://www.carwise.com/plugins-v2/photo-estimate-plugin/601639/resources/js/plugin.js" async></script>', 'featuredServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null)), 'additionalServices' => array(array('id' => 13, 'title' => 'Auto Collision Repair', 'slug' => 'auto-collision-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Auto Collision Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers high quality repairs and is an auto body repair industry leader for customer satisfaction ratings.  Our CARSTAR stores take pride in offering a clean and inviting environment. We feature state-of-the-art unibody and frame repair equipment, as well as expert painting, so you can rest assured your car will be fixed quickly and hassle-free.', 'longDescription' => 'CARSTAR features state-of-the-art unibody and frame repair equipment, expert color matching, towing assistance, vehicle pick-up and delivery in service markets where applicable, a nationwide warranty for most repairs, and takes pride in offering a clean, inviting environment.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/painting-car3.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 14, 'title' => 'Paintless Dent Repair', 'slug' => 'paintless-dent-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Paintless Dent Repair', 'headerServiceText' => null, 'shortDescription' => 'CARSTAR offers a processcalled paintless dent repair, acost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damagecaused by shopping carts, hail storms or other unexpected bumps in the road. The repairs are completed in a timelymanner and you can end up saving as much as half the costs of conventional repairs.', 'longDescription' => 'CARSTAR offers a process called paintless dent repair, a cost-effective solution for removing small dents and dings. This is a great option for minor, unsightly damage caused by shopping carts, hail storms, or other unexpected bumps in the road. The size and location of the damage will determine if this is the appropriate technique to repair your vehicle. This is typically a two to three day repair.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/paintless-dent1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 15, 'title' => 'Hail Damage Car Repair', 'slug' => 'hail-damage-repair', 'isAdditional' => true, 'isMain' => true, 'isPrimary' => true, 'isFeatured' => true, 'headerText' => 'Hail Damage Car Repair', 'headerServiceText' => null, 'shortDescription' => 'When Mother Nature strikes, CARSTAR is here to help! From hail dents to other weather related damage, CARSTAR offers a variety of services to help get your car back to pre-storm condition. Storm damage can be impossible to avoid, so we make hail damage repair not only possible, but also quick and affordable. We\'ll even work with your insurance company to make sure the repairs are covered in your policy.', 'longDescription' => 'CARSTAR is here to help when nasty storms strike! From 24/7 assistance to cost-effective paintless dent repair, we are committed to getting your car back in pre-storm condition.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/hail-damage1.jpg', 'featuredImage' => '', 'orderIdx' => null), array('id' => 16, 'title' => '24/7 Accident Assistance', 'slug' => 'accident-assistance', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => '24/7 Accident Assistance', 'headerServiceText' => null, 'shortDescription' => 'Whenever you need auto body repair, CARSTAR stores are here to help. Just call us toll-free at 1-800-CARSTAR. We offer helpful assistance 24 hours a day, seven days a week, and will walk you through every step of the process.', 'longDescription' => 'Whenever you need auto body repair, we are here to help. Call us toll-free at 1-800-CARSTAR to speak with our trained representatives. We are here 24 hours a day, seven days a week to offer help when you need it most. We can call your insurance company, get your vehicle towed for repairs and contact a friend or family member for you. You can relax, CARSTAR will take it from here.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/accident-assistance-icon.png', 'orderIdx' => null), array('id' => 18, 'title' => 'Fleet Services', 'slug' => 'fleet-services', 'isAdditional' => true, 'isMain' => null, 'isPrimary' => null, 'isFeatured' => null, 'headerText' => 'Fleet Services', 'headerServiceText' => null, 'shortDescription' => 'Keep your fleet vehicles safe and wellmaintained to make them more productiveand to increase their resale value.CARSTAR stores can handle any size fleet from pizza delivery vehicles to the power company’s service fleet. Our promise is that we will keep your cost low and your repair quality high. CARSTAR stores pride themselves on expertly trained and knowledgeable staff.', 'longDescription' => 'CARSTAR handles any size fleet from pizza delivery vehicles to a power company’s service trucks. The CARSTAR Fleet customers include: Police & Fire Departments, Cable Companies, Phone Companies, Government Vehicles (all types), Insurance Companies, Gas & Electric Companies, Car Rental Companies, Sales Company Fleet, and Corporate Fleet Programs.', 'bottomText' => null, 'icon' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services.jpg', 'featuredImage' => 'https://d3n2zmi3lgzln3.cloudfront.net/resources/images/fleet-services-icon.png', 'orderIdx' => null)), 'amenities' => array(), 'clientName' => '', 'yotrackUUID' => '', 'centerLevelServicesParagraph' => array('paintless-dent-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 3), array('paragraphNumber' => 2, 'templateIndex' => 0), array('paragraphNumber' => 3, 'templateIndex' => 2), array('paragraphNumber' => 4, 'templateIndex' => 1)), 'auto-collision-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 2), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 3), array('paragraphNumber' => 4, 'templateIndex' => 4)), 'hail-damage-repair' => array(array('paragraphNumber' => 1, 'templateIndex' => 4), array('paragraphNumber' => 2, 'templateIndex' => 2), array('paragraphNumber' => 3, 'templateIndex' => 1), array('paragraphNumber' => 4, 'templateIndex' => 3)))), 'transcription' => null, 'isMobile' => false))
     (src/Controller/FranchiseController.php:285)
  at App\Controller\FranchiseController->franchiseTranscription('wa', 'puyallup', '15380', 'x3co7ksz5rw', object(DetectMobile))
     (vendor/symfony/http-kernel/HttpKernel.php:152)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:20)