Error 500 Internal Server Error

GET https://bestof.ovh/commerce/restaurant-nosco

Exceptions

Key "opening_hours" for array with keys "address_components, adr_address, business_status, curbside_pickup, delivery, dine_in, formatted_address, formatted_phone_number, geometry, icon, icon_background_color, icon_mask_base_uri, international_phone_number, name, permanently_closed, photos, place_id, plus_code, rating, reference, reservable, reviews, serves_beer, serves_breakfast, serves_brunch, serves_dinner, serves_lunch, serves_vegetarian_food, serves_wine, takeout, types, url, user_ratings_total, utc_offset, vicinity, website, wheelchair_accessible_entrance" does not exist.

Exception

Twig\Error\ RuntimeError

  1.               <div class="text-base text-gray-700 dark:text-gray-100">
  2.                 Horaires d'ouverture
  3.               </div>
  4.             </div>
  5.             {% if apiData.result.opening_hours.open_now == true %}
  6.                 <div class="bg-green-50 text-xs p-2 rounded-lg text-green-500">
  7.                     Ouvert actuellement
  8.                 </div>
  9.             {% else %}
  10.                 <div class="bg-red-500 text-xs p-2 rounded-lg text-red-500">
  1.               </div>
  2.             </div>
  3.             ";
  4.         // line 773
  5.         if ((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["apiData"]) || array_key_exists("apiData"$context) ? $context["apiData"] : (function () { throw new RuntimeError('Variable "apiData" does not exist.'773$this->source); })()), "result", [], "any"falsefalsefalse773), "opening_hours", [], "any"falsefalsefalse773), "open_now", [], "any"falsefalsefalse773) == true)) {
  6.             // line 774
  7.             echo "                <div class=\"bg-green-50 text-xs p-2 rounded-lg text-green-500\">
  8.                     Ouvert actuellement
  9.                 </div>
  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.         // line 4
  2.         $this->loadTemplate("partials/mobileHeader.html.twig""base2.html.twig"4)->display($context);
  3.         // line 5
  4.         $this->loadTemplate("partials/generalHeader.html.twig""base2.html.twig"5)->display($context);
  5.         // line 6
  6.         $this->displayBlock('body'$context$blocks);
  7.         // line 7
  8.         echo "
  9. ";
  10.         // line 8
  11.         $this->loadTemplate("partials/footer.html.twig""base2.html.twig"8)->display($context);
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_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""home/show.html.twig"));
  3.         $this->parent $this->loadTemplate("base2.html.twig""home/show.html.twig"1);
  4.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  5.         
  6.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  7.         
  8.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_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.             if ($v instanceof FormInterface) {
  2.                 $parameters[$k] = $v->createView();
  3.             }
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      *
  1.      * If an invalid form is found in the list of parameters, a 422 status code is returned.
  2.      * Forms found in parameters are auto-cast to form views.
  3.      */
  4.     protected function render(string $view, array $parameters = [], Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         $response ??= new Response();
  8.         if (200 === $response->getStatusCode()) {
  9.             foreach ($parameters as $v) {
  10.                 if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
AbstractController->render('home/show.html.twig', array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK'))) in src/Controller/HomeController.php (line 240)
  1.         [
  2.             "shopId" => $slug,
  3.             "shopForView" => $shop,
  4.             'twoShops' => $twoShops,
  5.             "allCategories" => $allCategories,
  6.             "apiData" => $data,
  7.         ]);
  8.     }
  9. }
  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$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  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.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/bestofi/bestof/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 21:50:50 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a748bc"
    },
    "request_uri": "https://bestof.ovh/_profiler/a748bc?panel=exception",
    "method": "GET"
}
WARNING 21:50:50 php Notice: fwrite(): Write of 305 bytes failed with errno=122 Disk quota exceeded
{
    "exception": {}
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 21:50:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 21:50:50 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 21:50:50 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 21:50:50 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"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 21:50:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 21:50:50 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 21:50:50 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 21:50:50 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"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 21:50:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 21:50:50 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 21:50:50 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 21:50:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 21:50:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 21:50:50 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 21:50:50 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 21:50:50 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"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 21:50:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 21:50:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 21:50:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 21:50:50 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 21:50:50 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 21:50:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:50:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 21:50:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 21:50:50 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 21:50:50 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 21:50:50 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:
Key "opening_hours" for array with keys "address_components, adr_address, business_status, curbside_pickup, delivery, dine_in, formatted_address, formatted_phone_number, geometry, icon, icon_background_color, icon_mask_base_uri, international_phone_number, name, permanently_closed, photos, place_id, plus_code, rating, reference, reservable, reviews, serves_beer, serves_breakfast, serves_brunch, serves_dinner, serves_lunch, serves_vegetarian_food, serves_wine, takeout, types, url, user_ratings_total, utc_offset, vicinity, website, wheelchair_accessible_entrance" does not exist.

  at templates/home/show.html.twig:773
  at twig_get_attribute(object(Environment), object(Source), array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'opening_hours', array(), 'any', false, false, false, 773)
     (var/cache/dev/twig/34/3417a7bb8a6bfeed2790d3a12ac2dff4.php:1145)
  at __TwigTemplate_255215feba0da02059de99d201c2c900->block_body(array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK'), 'app' => object(AppVariable), 'rating' => 4.7), array('body' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_body'), 'title' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_title')))
     (vendor/twig/twig/src/Template.php:171)
  at Twig\Template->displayBlock('body', array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_body'), 'title' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_title')))
     (var/cache/dev/twig/e6/e6e9965de653442437e7b7b8f54427d6.php:54)
  at __TwigTemplate_63742b77e124d5519f436207eb36accf->doDisplay(array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_body'), 'title' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_title')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_body'), 'title' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_title')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK'), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_title'), 'body' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_body')))
     (var/cache/dev/twig/34/3417a7bb8a6bfeed2790d3a12ac2dff4.php:49)
  at __TwigTemplate_255215feba0da02059de99d201c2c900->doDisplay(array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK'), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_title'), 'body' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_body')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK'), 'app' => object(AppVariable)), array('title' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_title'), 'body' => array(object(__TwigTemplate_255215feba0da02059de99d201c2c900), 'block_body')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK')))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK')), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK')))
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render('home/show.html.twig', array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK')))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:242)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('home/show.html.twig', array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK')))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:253)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('home/show.html.twig', array('shopId' => 'restaurant-nosco', 'shopForView' => object(Shop), 'twoShops' => array(object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'apiData' => array('html_attributions' => array(), 'result' => array('address_components' => array(array('long_name' => '7', 'short_name' => '7', 'types' => array('street_number')), array('long_name' => 'Rue du Moulin', 'short_name' => 'Rue du Moulin', 'types' => array('route')), array('long_name' => 'Les Eyzies', 'short_name' => 'Les Eyzies', 'types' => array('locality', 'political')), array('long_name' => 'Dordogne', 'short_name' => 'Dordogne', 'types' => array('administrative_area_level_2', 'political')), array('long_name' => 'Nouvelle-Aquitaine', 'short_name' => 'Nouvelle-Aquitaine', 'types' => array('administrative_area_level_1', 'political')), array('long_name' => 'France', 'short_name' => 'FR', 'types' => array('country', 'political')), array('long_name' => '24620', 'short_name' => '24620', 'types' => array('postal_code'))), 'adr_address' => '<span class="street-address">7 Rue du Moulin</span>, <span class="postal-code">24620</span> <span class="locality">Les Eyzies</span>, <span class="country-name">France</span>', 'business_status' => 'CLOSED_TEMPORARILY', 'curbside_pickup' => false, 'delivery' => false, 'dine_in' => true, 'formatted_address' => '7 Rue du Moulin, 24620 Les Eyzies, France', 'formatted_phone_number' => '06 01 43 14 92', 'geometry' => array('location' => array('lat' => 44.9360551, 'lng' => 1.0149352), 'viewport' => array('northeast' => array('lat' => 44.9373998802915, 'lng' => 1.016284630291502), 'southwest' => array('lat' => 44.9347019197085, 'lng' => 1.013586669708498))), 'icon' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/restaurant-71.png', 'icon_background_color' => '#FF9E67', 'icon_mask_base_uri' => 'https://maps.gstatic.com/mapfiles/place_api/icons/v2/restaurant_pinlet', 'international_phone_number' => '+33 6 01 43 14 92', 'name' => 'Restaurant NOSCO', 'permanently_closed' => true, 'photos' => array(array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN2nuGDDt4U39wsFpE91YKERsQgmMMO0EF6Zu0y470c3YmSjxDJvMO5X3S_zDJHkwB8cpsmgFpuFnFXzBuLYXKe3xZX_4Cyq-9seLORMcxgIGn7Gp8YIL3TXkV3uIxrAISVjo7YhZHmJ9I5l3jfJya_Pprt3hEYUBxNaH28DKc6a5064uHSBI5NJznnlDKw-2pOHRnl6vUAOx_wYoy0wD_ps-1fo-mh6YJHVx2WETI887sUkvuyzjsvcZ1EhwnPn8eyhZtf0TAxdr1TjZtoaDveYE39gMeu-IyV8aaPlKc0WNwyTc8FBcLCnzA2gsZ9G_fBiUX1AYrJO33RBvutRMLYqHgQ1D89baamUwzNBbfQUXwXYjK85wyvmMtKsVj1OZIzuGpyWxgxQjoA3vmWXczw3BN01ql9ca6BA96-NieSddA', 'width' => 4032), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AcnlKN30GzrDXDaDd8RlW25MGqrlmVxBgpoWGGQoMUO2KYwe-J5FhX8oLaoFVH8HQSGTmY0ESDekBl2DVfchTkHdJbN4DTAJo4YnaAnoyh_qa62mQfwp6Y8Es7lYGsP1_q1pSC35PQMID0EU6WjD1rKJ7t0En3RiFf2MCHTeXT43-pHXXz4vtuQE3BG9NCMdCY7rmC_uxr2Ldkdwwyji-5nHu7kpvZOOfdaj1ex90d2MwvhmxPwhOC00HD98ePt5sNhD1V9jBhgwOtasKRmcx3aYDxOC3Ika_1XavQogh2MGPnSF2Q', 'width' => 3060), array('height' => 2179, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN1Qq4J1Fpl12AghaEBWWdXy1tXoKlHUU4YvF3CC9vuLK-e0Kh1dLkILow5rHwcCjkqZhVsTEYtA3jDs7H0nu7Z0BmkQBxR5kitlRDZTGUbshSWclVKc0UgQ1WNYAG67eZPVYYMyM3vMx9Bb2SB-m5B5E5qBAz5KVx2rj64s8kybVDTlFJ0ciuHNpZEg1f1qWQKFO7aqjOdwvY2vbEXa8q9WNyPgEKLsk4VxK_CEF2LTWaE2zxfE7UbKtbRoszU4wcJphPIPJIG91BEne34wSmcyAgMza4dmfTHbFHuXN1Q-xb2S0u7YgLSNWm2BrISjRUmI_BSQXSGe4FnOYJU54UmF-XOPCatS4XC7vRxFp3Nqy_GwbUVZukMLdsTm8YWMx-fbYpUSBBCgQ5FZ1dAj43q8upnXu-xdMeShAGe74PM', 'width' => 3983), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AcnlKN2ypdtIFAaSGYdYyabtOJoXTd5hPPBdj1AfgNMCQOJvyvjWxHpM2RJ9qqSML1pBugJIAbpHVPD2X5b4BeXmgOZ9tYTXQI13PuO22XATLgmR1cq55xxU4rMv2A7oyZCyl5in_orScU0wc8o2F4c4biVoINXeSouAZxcVz4Mb1WDQW9v1naCx9SNZHuVdpUbLI-JeSckKBw6SpcZ3zdS4mH-XhP--T4ORBanDDNN8-hgGX5RaMHcLbdbNZj4rtoZhWQHz9V3fhHalLJx9fEdTIj98YRJJGoFXHdnDYKYCsjCodMHi2bvecOVPXbc-sVnze_jZTjxoYDJSEeULlp84c1THPCztQm6mcraFPs0HJmwCIx-5hu_BuFIs-l-VHaFnF1okNjE0CinQERX-Eqy5MpeETUUMlTZEvOJtX7nukaPlSP4', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0L_pWguvBtQPRO7TI4dyyyVFHwURz_iOI78gi77nR1ELnGybBiCAzSn9LVhX3vqIPsL4zutwg9-Bu6Zy-1x-NF-YLERyMZ_lpA10gemCqmoa5PYCq1xbPfIja2C4d3V4JH6a3QHMydFPuTxQouiQw0AZ1qJ2tXmDl3vNqVNoRNYdlmJ6AX8DpryOXz37PJNOkNRPwqpQfMTmU3luu8sJnkfoyOnoTRTiTDT2FMVvdiuD_g13Hf4e18fkUpWX6XN9fmNEiMwmEpLSNMGjA3CijRf47F0Ucevjzlfx7gIbA_tAnX4TGQE_xCMCZpaL8A6hbKReliC7grWpKs2irlMBZRTV3Qit4qm4k8DYvyp7wnbwwfBFPDSQYZWdFWVf8epQ7ZBxvNRABHpHWOm04uGKwx2BJsPLOPv7AZQEKUyka8VD7pnytfcJ0Nn_BAgzL4', 'width' => 4032), array('height' => 3000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/106196763373855881923">Gilles Rouveure</a>'), 'photo_reference' => 'AcnlKN31DtNjDo4i-y9Ion2G867KfyTsVZtaMh0BGvXGvuFTx5sI5A9VmFDgFsLFL1p8JLBkvM3ekXRFcKcMZ0p082EsaGcK1P_fvYkueH2uE-Pwt-DKnz7_ZNqdSUpUBVjqPr-rSrlkrFzhzhJ0l5X2GPOayjQqHBjSYMxPSZ-82XevA9Ce_M4LYVwgQIOhEVkxF1-oAOdc0S1SLKwZqk_XCJBkGTeh26eNleU4IhsP3dwB9GcZxZy-M120fhxOT2BY761G2AQy05tWGdUKw1ZdN11z75cTisQ8YI8JRsEeVqX9SNknWA3fTvY8ULWqANi9JsxJJbl-GoxMSCC4OGbIDlgLNaHt2ElPtJpN4Pp-E4xbappL9b92c89uZXac14ATjA6TOsOyk-9yfA8W3CiA4RZy8QyloWrWITq49BAzPlcCnf6E', 'width' => 4000), array('height' => 1311, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/111577640564085862301">LAVAUD Chantal</a>'), 'photo_reference' => 'AcnlKN0Vj300jvYIIY2XDbxPLz8IHlySTlqp6nlJhEdX5dHiCCrkud--tqLL9rF7K7fU8KiGd62fzh3nvZgJASNoM0Mr2nW6FaxDFLmsWVIUC1v-sqSbMy4IEZbFbupmHep-T7lKluD9cqvmn3HPxuSwjsxOFt-cY9MuAM9vz9oZKQgT42fhKSIqv41seuLieuoTzZQbnS4f0nTZvCMqGhP3N22pJvi7aB9mZHeF-rDMhqNRvs8Yuv8XKGwaysr2huA7tcDs2PIw2CL0vQWzZkwEhAkrwizuEUjbFeTaJ1jgktiM7nUsz3wTFAdeQBX9L-LRqFdQWDVCxOt3JpmjU-w3yAEFpWtwiQhNZPZq6Tb-Ls6MwluOXidf7yCJmWWPfl05NJtNMyGoS8g_lxExMrwEI4mRj8HNO_nSsDkToboA9ystmn8', 'width' => 1120), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AcnlKN0_-k9VlziTC3ZbW_yUOF-TF5fSVnIqeG93aPB7bIRr1td66LDbIofmNfOtZ2qpMTAXq3wIdztP-oKbVBg-5wvMwWmFCRTvVtcnPy3b_5AJUUxePmEue2gYx9NZy33Njt4ulBmCXKyh3Soyr7gr37emUusChV9IPgI-oSLt2mLh2pRcHVMA0XpgdtcIdtmCmXfoF3J_1JYZgfe-3w54OHXJPXh8hmlvUXp7b2z1FGa8qrsCxAEPKfq0kPXZvO1sCbvXC92TJOIWUyAnx17oVf-1mAQefGGyhYNBnox_nQjBtV0A7LzMlmi4dIqQ9KIkBq6wrVJb0tpBEpvkVQdpaEB8OEh6EAZ4jyQXCLq-Ae3If8dhagcRGkkMbp5MZwG7vTn5XLx_CKxTRkA6G-nON-BQYIBeMMRc86bcHSd9kjQXBroo', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AcnlKN0K7I_0nTBN0uOsjC-xL-63uWZSr4y_tq9GSmqL7DDwWJdp2yv0KxSCwbAtmDnMttnX4dxeVZOYjqaV1JTrSHmqCXkQD3fS6N_AT5fLRGKXZmGeLuc3s4pgMwF3bpVjMoTWGzbWolDegaWQmn4m_eb6iBjhuZzj9OPCu0OGR5iDe7lIW721Xd6AfO1J8Miub9WR-q9HhZi60Tsn1tUUXwu3LGaYwNbbl7T19KEfI6r7oc_PaSfA0aLzcGDiHRF0zspq1MUZJm6EDN4AnAVGau-5shS2SJO4AS-amyDW1Q7Qukt0nPUwK_q3Xv-hE2j8oTpoZS_uvmNqsYfvExMdYLwtk2h7etVVnQchV0YYsTKA8GtabUUVPdcj8yESuqLteXTJPeC5MGg3EPl39DHlG7dhrelZcCFe2WOuJhMM3TzytSKYs-9B03cdf6YAgA', 'width' => 4031), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AcnlKN0HeQGNeGrq7utQSRiQuOl2Igjz8W5QyNiI76CLMDrAWFuaYxkvn0KJ4Y4xmh7SMEYzJdVBhqmko-lAD0Lo5nRVEq--ZC5AQJHzYBxpEXNStvRi8hFjx9lhdvku1cd-tgszmAqM8kO8eJrJGq9x5PtGH88jxLxfmWQoAnGSQl9ha-NLFeEVFMNxxYvt_qFr0m91UnYOF7CA52DTHm43MTd2oIz-CLnKqbbo75wQJ4jKRTy95po6qeJcDQ3HP_27XyGN9tf-trf7Y48chKcPGcI9KqwmK6LAHj4rj2auu3L9XvLnRcMUPws6iuR8VclW7Pija0kB0UgwyKJVrTISs6pp9zXzBsUa89UJ0SAf9Il3c47Q8aUWcCqrdbVO0eB3l49NHk4ALtRoPz2no5UQNjoy50SkthDPam2C9PfdmjY_47th', 'width' => 3024)), 'place_id' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'plus_code' => array('compound_code' => 'W2P7+CX Les Eyzies, France', 'global_code' => '8FP3W2P7+CX'), 'rating' => 4.7, 'reference' => 'ChIJE353Um5NqxIR-M1dmOY5GrY', 'reservable' => true, 'reviews' => array(array('author_name' => 'Pat Migéco', 'author_url' => 'https://www.google.com/maps/contrib/100669826303832039599/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocJd0SwzsfSDkWDOyPEvPkVDONZiZm6KfvZul_yvJYqRT3M0eQ=s128-c0x00000000-cc-rp-mo-ba5', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Alors là un très bon restaurant ! Un très bon accueil ! Un très bon service !Une succulente cuisine avec un très bon rapport qualité ! Bravo à toute l\'équipe ! Que du bonheur ! Parking à  proximité ! Il vaut mieux reserver ! Je vous recommande cet établissement !', 'time' => 1760819998, 'translated' => false), array('author_name' => 'Manon VIDAL', 'author_url' => 'https://www.google.com/maps/contrib/113783961056581691924/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV0g5ojARR-IiXLVEHBsBuepVroWhdQwAy9pIubxvAKaMEiAAEG=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 3 mois', 'text' => 'Nous sommes venu a ce restaurant sur recommandation de la vendeuse de la terrasse du charron et nous n\'avons pas été déçu ! Au contraire, l\'accueil a été très chaleureux, un repas délicieux, produits régionaux mettant en avant les producteurs. Le repas était a la hauteur de nos attentes, nous vous conseillons de vous y arrêter un soir pour profiter de l\'ambiance.', 'time' => 1757846870, 'translated' => false), array('author_name' => 'Stella Ferriere', 'author_url' => 'https://www.google.com/maps/contrib/114842290413279293979/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjXayF67IlYeU4EjzCCpOYe-V9RzSUqj4-pjGZR_XUTtlWrkkVzL=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 mois', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Guillaume Pade', 'author_url' => 'https://www.google.com/maps/contrib/104507447131818620499/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLajIQ3HdVSBQed5avSKnQN_6wWoAM7qsIfzydWKMtr0JHTGA=s128-c0x00000000-cc-rp-mo-ba3', 'rating' => 5, 'relative_time_description' => 'il y a un an', 'text' => 'Dès notre arrivée, nous avons été chaleureusement accueillis par le personnel attentif et professionnel tout au long du repas. L\'ambiance est cosy et agréable, idéale pour un dîner entre amis ou en famille.Côté cuisine, c\'était un sans-faute. Les plats sont savoureux, bien présentés, et les portions généreuses. Les produits sont visiblement frais et de qualité, et cela se ressent dans les saveurs.Je recommande vivement ce restaurant pour ceux qui cherchent une belle expérience culinaire dans un cadre sympathique.', 'time' => 1726831901, 'translated' => false), array('author_name' => 'Sophie Fonvieille', 'author_url' => 'https://www.google.com/maps/contrib/104411453226239602216/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocLcnajwy9dzwOTA5a9rXPdCmkbe7FhrPwH1W7YxOmeokla5rw=s128-c0x00000000-cc-rp-mo', 'rating' => 5, 'relative_time_description' => 'il y a 11 mois', 'text' => 'C est avec une agréable surprise que j ai découvert ce restaurant pour la saint Valentin qui est une perle rare dans notre région.Très bon accueil.Service au top 👌 au petit soin à veiller que tout se passe pour le mieux.Assiettes bien présentées mais cela ne s arrête pas là, car on y retrouve des produits frais avec des mélanges de saveurs qui se mari parfaitement.Je félicite encore le chef pour son travail 👏👏 👏Je garde bien en tête cette adresse et ne manquerai pas d y revenir.Je vous la recommande les yeux fermés.Merci à vous pour cette agréable soirée.', 'time' => 1739569227, 'translated' => false)), 'serves_beer' => true, 'serves_breakfast' => false, 'serves_brunch' => false, 'serves_dinner' => true, 'serves_lunch' => true, 'serves_vegetarian_food' => false, 'serves_wine' => true, 'takeout' => false, 'types' => array('establishment', 'food', 'point_of_interest', 'restaurant'), 'url' => 'https://maps.google.com/?cid=13121864126858907128', 'user_ratings_total' => 390, 'utc_offset' => 60, 'vicinity' => '7 Rue du Moulin, Les Eyzies', 'website' => 'https://www.restaurantnosco.fr/', 'wheelchair_accessible_entrance' => false), 'status' => 'OK')))
     (src/Controller/HomeController.php:240)
  at App\Controller\HomeController->show('restaurant-nosco', object(ShopRepository), object(CategoryRepository))
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  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:184)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/home/bestofi/bestof/vendor/autoload_runtime.php')
     (public/index.php:5)