Notice: fwrite(): Write of 350 bytes failed with errno=122 Disk quota exceeded in /home/bestofi/bestof/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 159
An exception has been thrown during the rendering of a template ("Failed to start the session because headers have already been sent by "/home/bestofi/bestof/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php" at line 159."). (500 Internal Server Error)

Symfony Exception

RuntimeException RuntimeError

HTTP 500 Internal Server Error

An exception has been thrown during the rendering of a template ("Failed to start the session because headers have already been sent by "/home/bestofi/bestof/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php" at line 159.").

Exceptions 2

Twig\Error\ RuntimeError

  1.       <div class="font-inter dark:bg-background sticky-header-first-content">
  2.       <div class="container mx-auto lg:px-0 px-5 dark:bg-background">
  3.     {% for flashMessage in app.flashes('success') %}
  4.       <div class="alert alert-success flash-message bg-teal-100 border-t-4 border-teal-500 rounded-b text-teal-900 px-4 py-3 shadow-md" role="alert">
  5.         <div class="flex">
  6.           <div class="py-1"><svg class="fill-current h-6 w-6 text-teal-500 mr-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M2.93 17.07A10 10 0 1 1 17.07 2.93 10 10 0 0 1 2.93 17.07zm12.73-1.41A8 8 0 1 0 4.34 4.34a8 8 0 0 0 11.32 11.32zM9 11V9h2v6H9v-4zm0-6h2v2H9V5z"/></svg></div>
  7.           <div>
  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/listing.html.twig"));
  3.         $this->parent $this->loadTemplate("base2.html.twig""home/listing.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/listing.html.twig', array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'))) in src/Controller/HomeController.php (line 116)
  1.         return $this->render('home/listing.html.twig', [
  2.             'allShops' => $allShops,
  3.             'allCategories' => $allCategories,
  4.             'form' => $form->createView(),
  5.             'shops' => $shops,
  6.             "apiData" => $data,
  7.         ]);
  8.     }
  9.     /**
  10.      * route par défaut
  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. };

RuntimeException

Failed to start the session because headers have already been sent by "/home/bestofi/bestof/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php" at line 159.

  1.         if (\PHP_SESSION_ACTIVE === session_status()) {
  2.             throw new \RuntimeException('Failed to start the session: already started by PHP.');
  3.         }
  4.         if (filter_var(\ini_get('session.use_cookies'), \FILTER_VALIDATE_BOOL) && headers_sent($file$line)) {
  5.             throw new \RuntimeException(sprintf('Failed to start the session because headers have already been sent by "%s" at line %d.'$file$line));
  6.         }
  7.         $sessionId $_COOKIE[session_name()] ?? null;
  8.         /*
  9.          * Explanation of the session ID regular expression: `/^[a-zA-Z0-9,-]{22,250}$/`.
  1.         }
  2.         if (!$this->started && $this->saveHandler->isActive()) {
  3.             $this->loadSession();
  4.         } elseif (!$this->started) {
  5.             $this->start();
  6.         }
  7.         return $this->bags[$name];
  8.     }
  1.         $this->storage->registerBag(new SessionBagProxy($bag$this->data$this->usageIndex$this->usageReporter));
  2.     }
  3.     public function getBag(string $name): SessionBagInterface
  4.     {
  5.         $bag $this->storage->getBag($name);
  6.         return method_exists($bag'getBag') ? $bag->getBag() : $bag;
  7.     }
  8.     /**
  1.     /**
  2.      * Gets the flashbag interface.
  3.      */
  4.     public function getFlashBag(): FlashBagInterface
  5.     {
  6.         return $this->getBag($this->flashName);
  7.     }
  8.     /**
  9.      * Gets the attributebag interface.
  10.      *
  1.         if (null === $types || '' === $types || [] === $types) {
  2.             return $session->getFlashBag()->all();
  3.         }
  4.         if (\is_string($types)) {
  5.             return $session->getFlashBag()->get($types);
  6.         }
  7.         $result = [];
  8.         foreach ($types as $type) {
  9.             $result[$type] = $session->getFlashBag()->get($type);
  1.     }
  2.     // Some objects throw exceptions when they have __call, and the method we try
  3.     // to call is not supported. If ignoreStrictCheck is true, we should return null.
  4.     try {
  5.         $ret $object->$method(...$arguments);
  6.     } catch (\BadMethodCallException $e) {
  7.         if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
  8.             return;
  9.         }
  10.         throw $e;
  1.       <div class=\"container mx-auto lg:px-0 px-5 dark:bg-background\">
  2.     ";
  3.         // line 9
  4.         $context['_parent'] = $context;
  5.         $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'9$this->source); })()), "flashes", [=> "success"], "method"falsefalsefalse9));
  6.         foreach ($context['_seq'] as $context["_key"] => $context["flashMessage"]) {
  7.             // line 10
  8.             echo "
  9.       <div class=\"alert alert-success flash-message bg-teal-100 border-t-4 border-teal-500 rounded-b text-teal-900 px-4 py-3 shadow-md\" role=\"alert\">
  10.         <div class=\"flex\">
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/listing.html.twig"));
  3.         $this->parent $this->loadTemplate("base2.html.twig""home/listing.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/listing.html.twig', array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'))) in src/Controller/HomeController.php (line 116)
  1.         return $this->render('home/listing.html.twig', [
  2.             'allShops' => $allShops,
  3.             'allCategories' => $allCategories,
  4.             'form' => $form->createView(),
  5.             'shops' => $shops,
  6.             "apiData" => $data,
  7.         ]);
  8.     }
  9.     /**
  10.      * route par défaut
  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 1

Level Channel Message
INFO 03:27:34 request Matched route "app_home_list_category".
{
    "route": "app_home_list_category",
    "route_parameters": {
        "_route": "app_home_list_category",
        "id": "2",
        "_controller": "App\\Controller\\HomeController::list"
    },
    "request_uri": "https://bestof.ovh/listing/2",
    "method": "GET"
}
WARNING 03:27:34 php Notice: fwrite(): Write of 305 bytes failed with errno=122 Disk quota exceeded
{
    "exception": {}
}
DEBUG 03:27:34 security Checking for authenticator support.
{
    "firewall_name": "main",
    "authenticators": 1
}
DEBUG 03:27:34 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\BestofAuthenticator"
}
DEBUG 03:27:34 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\BestofAuthenticator"
}
DEBUG 03:27:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 03:27:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 03:27:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 03:27:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 03:27:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 03:27:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 03:27:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 03:27:34 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 03:27:34 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 03:27:34 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 03:27:34 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 03:27:34 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 03:27:34 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 03:27:34 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 03:27:34 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 03:27:34 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 03:27:34 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 03:27:34 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 03:27:34 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 03:27:34 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 03:27:34 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 03:27:34 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
INFO 03:27:34 doctrine Connecting with parameters {params}
{
    "params": {
        "url": "<redacted>",
        "driver": "pdo_mysql",
        "host": "bestofipierrem.mysql.db",
        "port": null,
        "user": "bestofipierrem",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "dbname": "bestofipierrem",
        "serverVersion": "mariadb-10.3.35",
        "charset": "utf8mb4"
    }
}
DEBUG 03:27:34 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.picture AS picture_3, t0.subtitle AS subtitle_4 FROM category t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.picture AS picture_3, t0.subtitle AS subtitle_4 FROM category t0 WHERE t0.id = ?",
    "params": {
        "1": "2"
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:27:35 doctrine Executing query: SELECT c0_.id AS id_0, c0_.name AS name_1, c0_.picture AS picture_2, c0_.subtitle AS subtitle_3 FROM category c0_
{
    "sql": "SELECT c0_.id AS id_0, c0_.name AS name_1, c0_.picture AS picture_2, c0_.subtitle AS subtitle_3 FROM category c0_"
}
DEBUG 03:27:35 doctrine Executing statement: SELECT s0_.id AS id_0, s0_.name AS name_1, s0_.email AS email_2, s0_.subtitle AS subtitle_3, s0_.phone_number AS phone_number_4, s0_.about AS about_5, s0_.adress_street AS adress_street_6, s0_.adress_street2 AS adress_street2_7, s0_.address_postal_code AS address_postal_code_8, s0_.address_city AS address_city_9, s0_.image_name AS image_name_10, s0_.image_name2 AS image_name2_11, s0_.image_name3 AS image_name3_12, s0_.image_name4 AS image_name4_13, s0_.image_name5 AS image_name5_14, s0_.image_name6 AS image_name6_15, s0_.facebook AS facebook_16, s0_.twitter AS twitter_17, s0_.instagram AS instagram_18, s0_.linkedin AS linkedin_19, s0_.website AS website_20, s0_.available AS available_21, s0_.verified AS verified_22, s0_.homepage_place AS homepage_place_23, s0_.slug AS slug_24, s0_.created_at AS created_at_25, s0_.updated_at AS updated_at_26, s0_.latitude AS latitude_27, s0_.longitude AS longitude_28, s0_.my_business AS my_business_29, c1_.id AS id_30, c1_.name AS name_31, c1_.picture AS picture_32, c1_.subtitle AS subtitle_33, s0_.users_id AS users_id_34 FROM shop s0_ INNER JOIN shop_category s2_ ON s0_.id = s2_.shop_id INNER JOIN category c1_ ON c1_.id = s2_.category_id WHERE c1_.id IN (?) (parameters: {params}, types: {types})
{
    "sql": "SELECT s0_.id AS id_0, s0_.name AS name_1, s0_.email AS email_2, s0_.subtitle AS subtitle_3, s0_.phone_number AS phone_number_4, s0_.about AS about_5, s0_.adress_street AS adress_street_6, s0_.adress_street2 AS adress_street2_7, s0_.address_postal_code AS address_postal_code_8, s0_.address_city AS address_city_9, s0_.image_name AS image_name_10, s0_.image_name2 AS image_name2_11, s0_.image_name3 AS image_name3_12, s0_.image_name4 AS image_name4_13, s0_.image_name5 AS image_name5_14, s0_.image_name6 AS image_name6_15, s0_.facebook AS facebook_16, s0_.twitter AS twitter_17, s0_.instagram AS instagram_18, s0_.linkedin AS linkedin_19, s0_.website AS website_20, s0_.available AS available_21, s0_.verified AS verified_22, s0_.homepage_place AS homepage_place_23, s0_.slug AS slug_24, s0_.created_at AS created_at_25, s0_.updated_at AS updated_at_26, s0_.latitude AS latitude_27, s0_.longitude AS longitude_28, s0_.my_business AS my_business_29, c1_.id AS id_30, c1_.name AS name_31, c1_.picture AS picture_32, c1_.subtitle AS subtitle_33, s0_.users_id AS users_id_34 FROM shop s0_ INNER JOIN shop_category s2_ ON s0_.id = s2_.shop_id INNER JOIN category c1_ ON c1_.id = s2_.category_id WHERE c1_.id IN (?)",
    "params": {
        "1": 2
    },
    "types": {
        "1": 1
    }
}
DEBUG 03:27:35 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.email AS email_3, t0.subtitle AS subtitle_4, t0.phone_number AS phone_number_5, t0.about AS about_6, t0.adress_street AS adress_street_7, t0.adress_street2 AS adress_street2_8, t0.address_postal_code AS address_postal_code_9, t0.address_city AS address_city_10, t0.image_name AS image_name_11, t0.image_name2 AS image_name2_12, t0.image_name3 AS image_name3_13, t0.image_name4 AS image_name4_14, t0.image_name5 AS image_name5_15, t0.image_name6 AS image_name6_16, t0.facebook AS facebook_17, t0.twitter AS twitter_18, t0.instagram AS instagram_19, t0.linkedin AS linkedin_20, t0.website AS website_21, t0.available AS available_22, t0.verified AS verified_23, t0.homepage_place AS homepage_place_24, t0.slug AS slug_25, t0.created_at AS created_at_26, t0.updated_at AS updated_at_27, t0.latitude AS latitude_28, t0.longitude AS longitude_29, t0.my_business AS my_business_30, t0.users_id AS users_id_31 FROM shop t0 WHERE t0.available = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.email AS email_3, t0.subtitle AS subtitle_4, t0.phone_number AS phone_number_5, t0.about AS about_6, t0.adress_street AS adress_street_7, t0.adress_street2 AS adress_street2_8, t0.address_postal_code AS address_postal_code_9, t0.address_city AS address_city_10, t0.image_name AS image_name_11, t0.image_name2 AS image_name2_12, t0.image_name3 AS image_name3_13, t0.image_name4 AS image_name4_14, t0.image_name5 AS image_name5_15, t0.image_name6 AS image_name6_16, t0.facebook AS facebook_17, t0.twitter AS twitter_18, t0.instagram AS instagram_19, t0.linkedin AS linkedin_20, t0.website AS website_21, t0.available AS available_22, t0.verified AS verified_23, t0.homepage_place AS homepage_place_24, t0.slug AS slug_25, t0.created_at AS created_at_26, t0.updated_at AS updated_at_27, t0.latitude AS latitude_28, t0.longitude AS longitude_29, t0.my_business AS my_business_30, t0.users_id AS users_id_31 FROM shop t0 WHERE t0.available = ?",
    "params": {
        "1": 1
    },
    "types": {
        "1": 5
    }
}
DEBUG 03:27:35 doctrine Executing query: SELECT t0.id AS id_1, t0.name AS name_2, t0.picture AS picture_3, t0.subtitle AS subtitle_4 FROM category t0
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.picture AS picture_3, t0.subtitle AS subtitle_4 FROM category t0"
}
DEBUG 03:27:35 doctrine Executing query: SELECT t0.id AS id_1, t0.name AS name_2, t0.picture AS picture_3, t0.subtitle AS subtitle_4 FROM category t0
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.picture AS picture_3, t0.subtitle AS subtitle_4 FROM category t0"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 doctrine Executing query: SELECT t0.id AS id_1, t0.name AS name_2, t0.picture AS picture_3, t0.subtitle AS subtitle_4 FROM category t0
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.picture AS picture_3, t0.subtitle AS subtitle_4 FROM category t0"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 03:27:35 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
CRITICAL 03:27:35 request Uncaught PHP Exception Twig\Error\RuntimeError: "An exception has been thrown during the rendering of a template ("Failed to start the session because headers have already been sent by "/home/bestofi/bestof/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php" at line 159.")." at /home/bestofi/bestof/templates/home/listing.html.twig line 9
{
    "exception": {}
}
DEBUG 03:27:35 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 03:27:35 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 03:27:35 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 03:27:35 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 03:27:35 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 03:27:35 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 03:27:35 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 03:27:35 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 03:27:35 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 03:27:35 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 03:27:35 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 03:27:35 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 03:27:35 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 03:27:35 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 03:27:35 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 03:27:35 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 03:27:35 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 03:27:35 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 03:27:35 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 03:27:35 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 03:27:35 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 03:27:35 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 Traces 2

[2/2] RuntimeError
Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("Failed to start the session because headers have already been sent by "/home/bestofi/bestof/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php" at line 159.").

  at templates/home/listing.html.twig:9
  at Twig\Template->displayBlock('body', array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (var/cache/dev/twig/e6/e6e9965de653442437e7b7b8f54427d6.php:54)
  at __TwigTemplate_63742b77e124d5519f436207eb36accf->doDisplay(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (var/cache/dev/twig/be/bed8611fedc68478a9748e1756cab723.php:49)
  at __TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f->doDisplay(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')))
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render('home/listing.html.twig', array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:242)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('home/listing.html.twig', array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:253)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('home/listing.html.twig', array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')))
     (src/Controller/HomeController.php:116)
  at App\Controller\HomeController->list(object(ShopRepository), object(CategoryRepository), object(Request), '2')
     (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)                
[1/2] RuntimeException
RuntimeException:
Failed to start the session because headers have already been sent by "/home/bestofi/bestof/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php" at line 159.

  at vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:132
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->start()
     (vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:296)
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->getBag('flashes')
     (vendor/symfony/http-foundation/Session/Session.php:201)
  at Symfony\Component\HttpFoundation\Session\Session->getBag('flashes')
     (vendor/symfony/http-foundation/Session/Session.php:211)
  at Symfony\Component\HttpFoundation\Session\Session->getFlashBag()
     (vendor/symfony/twig-bridge/AppVariable.php:151)
  at Symfony\Bridge\Twig\AppVariable->getFlashes('success')
     (vendor/twig/twig/src/Extension/CoreExtension.php:1635)
  at twig_get_attribute(object(Environment), object(Source), object(AppVariable), 'flashes', array('success'), 'method', false, false, false, 9)
     (var/cache/dev/twig/be/bed8611fedc68478a9748e1756cab723.php:77)
  at __TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f->block_body(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable), '_parent' => array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable))), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (vendor/twig/twig/src/Template.php:171)
  at Twig\Template->displayBlock('body', array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (var/cache/dev/twig/e6/e6e9965de653442437e7b7b8f54427d6.php:54)
  at __TwigTemplate_63742b77e124d5519f436207eb36accf->doDisplay(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (var/cache/dev/twig/be/bed8611fedc68478a9748e1756cab723.php:49)
  at __TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f->doDisplay(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK'), 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block_body'), '_category_widget' => array(object(__TwigTemplate_38c0995cbf56146dbfcf0dc197c12c2f), 'block__category_widget')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')))
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render('home/listing.html.twig', array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:242)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('home/listing.html.twig', array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:253)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('home/listing.html.twig', array('allShops' => array(object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop), object(Shop)), 'allCategories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'form' => object(FormView), 'shops' => array(object(Shop)), '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' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU5Q5gJdECnZgGi43Hv03EPZNuxbJgV5BWpF_MAzVYx0ouxnHMhauqmHCRoEMltdbTbe5YId4NsChoRT2DLjx22XyAVtzhi7B5Bd4Bhi6zodTaKHnQZTFfYy-uRAGbtTgH48CVAlFrF7PAYfhuY67L2lZtvOTzy9l78Ux3KZXao5HoY8z5RLLafjlm-R0gDw-scMHbZ_86iwXB6ZSTSj8DtmoKgJsOShZv9Va5z1-OzKfbNMiYbE09C--Wu_tXGLzlZ-WrXu2ho62HTMG5MUXD9hNHqwZH9VdqskVVJXHdwmWhGhRfHD95c5CrKWK11jRl44mqWt0BAT7a21uWyTKCNDyuFIKjLwNdgqWQSdI-BQzFeLPvfIg_3gK9X2Tgmd7C2tW7cwuagzQXrHRfGqUH9t1B3MKeGrLX-YDFsV6l4D2Q', 'width' => 3024), array('height' => 3215, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114864208106042344963">Restaurant NOSCO</a>'), 'photo_reference' => 'AWn5SU6TtcwwvGTsRMLK5Y4qMQhiYcOJP8_kmOj3ZWoSCNwjkYY77uDffZ38ytcSxW61VLeroiYX39cbKKvrsJavgWk_EGdLVLDSO37_wCZ7JYeeGLd4fM8vxOFaIg3JZQGmkfsJOlG3E5Q3WrXA1H-BIu2fJttpz_QlTAISShMgOPTQujqeRXyZ-yd6GP4_9T4_-CgnhRqDpSiTuLbagjHaSIjobsrqzgB82vd2DaZ2vdbE5cE8N_6CXJgBaxquRzL-4xPXAEJ5bXq2JyusePhOWhAxacvzAEtpQw_MsLj3hilG8A', 'width' => 3060), array('height' => 1840, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/114842290413279293979">Stella Ferriere</a>'), 'photo_reference' => 'AWn5SU6BRI5NY_YxQNkbTUqpKV6WbtsmUatj77z4Dz38_C90lDfqJHw9kYjRWlgAUxGuGeUBcJ8fYq3WWnFxEnjvmbRAroMDD5Gbp1yEWiROHjCgQsWvQJN7YOpb9D7dC4WmfbtymhtuwMb11C82RwmV0XEiYNgSh8QyVGcl1wwXQuQaD39pPgkwZKP3CmH3H2xwlKTwkSxDgYas6y76ESTzLUPY52yVSnlobxWXStFQxH09Q6cKJGj5gczFfrC0OXeksfKbRnnZmQNbs3SniTachUsVNeTtLAtOAIGnvsudQ4HlSG1ZHn5oP8zy8Ou3b43xfRytzKb0LeIkyRzjgGYZfXDDX2pMNDOPy6Uv-ZH78IjX8ASLQm9rwKqjlmgHR7tf59r2gj_vY-6V5l7YjuXuVGzonlBGtqNDH-b6e4POVA3cRD07uh4dXkmeJyfAct4s', 'width' => 3984), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU79QhOR73va0JglyPB2YeTJompkHIq8OIIJOiv7GVzWlwzy0WVWGrpj_b-glI9uBWCANPshvZM58b8Dniltu2Wm58vyewM0Qfrx7ZHjmvkrkLP0gbVj_Lh1utuLC56Qpa-eYR_DNoNnwNijD5L7C6XFGqsSHo_HSpYgHdYYcQqGFbEQGd-gwtxbYxtxctMsCzwN9ILHFqHBCVzBNKmzfy6GhMh1EwpK4KhJI2iol3kvDfVYbunZQaVMDeG4nUi1Xwy5pUEQRfZnknbXcC4UmC-5eeOXfr5-LFarYWzpqtzNQ4IYUXuC_M9zACImP2U4Ye8D6CRtH3hXN2iM1oUv8q2-fAbODRqfyYaIJadtFTdrUpbebzCWqo8oi_h0cNFvwMWeVDO0vVS9WJWkZQqGFBum7YZ0GULKFjrh8IuHn_Xr29YL', 'width' => 3024), array('height' => 3060, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/105968091408603288119">Bilbon Lehobbit</a>'), 'photo_reference' => 'AWn5SU7pCi5dds7eU-Mg7hujiDkddzzeq2biiAe3xWGSWVZ4KtLc8J6MIc4GphfmuKRJVSRni5fZB6AlEt25q3nsmncuxvWHbJGM_g6-_RO4sops-kPAUMXgs_G2tiuOhmHdjGYTDFe5JYExekUWfws2y_WxKavKNMOP3u6AhFjKdh0ucUciwI_wTTGuIIY6L00i6YdZKP9F8BCgGqLQyDM8n2wTfUC_kSCrPjunZM6Us35eCwlxGgGaZ7h7Hv0jWSRLAg8OgQG5-y0A9Apyu8l4y6P2ESfY0H0_wjAwKnAVqMjheTFT2TGBC-7BpnuouwW6hLJ-Dz3CGQpPvtz6UTFZW3DqstIptOqXOKvmPcUouRQZ7Uy_jxAaOa-kb3p5I41Gci0Y2YvgvbN2SEdnAIxhio5-yGS60abL2v04ZrBSuS8uqLY', 'width' => 4080), array('height' => 3024, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/112986559066130715709">Marianne</a>'), 'photo_reference' => 'AWn5SU4yDfKU0awE2XfPU3cZ-qk0mMV_FrqFPSpVKxRiLG2XwkGCOddqRnE5hvjtAZJjMwSqVCE_cA-4Xf4if54D__g1WJM0ymbu8BV8nfSqQ4Kg7tH_3xnJcq2PqUwGeV1gEZc_NMvfjl_B_rlcuiP1EyH2rMybKgolBRE1w3tJ8dNK6wNkyumpIznmEJg2pzq-K411XOyx7VlfXHaKVaINOaFqr2QZv5ilB81q1iHbQkFChS_seqqn5eKEehJYxzqSb0XyaLxwliReUzpE1SG9aGahpMNlP3lKjVNiO33m8maYs0XTOPjQsCIzX-6UlYSokC4UOAmfowwzJnQZgKQDcp9k2VMu_gfrkOo6pYm_fGkd-3azbsb4zRahRM9ksNtqHV5FtxgI-82jnw5ccZYWTgT4Jg1eaDyBVnv0ofYiQHzUKn0P', 'width' => 4032), array('height' => 2746, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/116697665402021846348">Alice Giraud</a>'), 'photo_reference' => 'AWn5SU55P2-n_16Mt4oJoK7Dk2JSSKYuABy9S2pEsMs1qf78LF3gDMpah2m2nr32YgHsOOO4BfI2JBmZm32ZKFMILsjvJamaDnBSfC0SFk1hi4p-EtP66uhKQ1Hv9JN2yC4taplyGAeCG93k8sEVDefwmlRn_V6Tk_2HqBaysQ6uSSy5GDvCKjd_2MoGkfAgNecfozfC0qySBDZLmck_XWBB5ZOQnjEmaSow1Pmd2FrTRwIOPU9R4ao7Hu_rz3boLvlgdpztGbghNZ_imVzE5Xx3q6zVxfrOcNTUV1X98IvC1IfixqdNLCvsHgJr2Maw_KTiSf7eRm9B9cUgkz-1OJlKQvy2YdAi1qqxmXjLo-r6LxZGMHGbcLRZQRxhnzF8UIISVWBTKiyx2H7foHjLsUPZLyxJnj3ahupDNjUgvd4h2CM', 'width' => 3024), array('height' => 4032, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/104411453226239602216">Sophie Fonvieille</a>'), 'photo_reference' => 'AWn5SU5Gbh_yEYHvu1XstRpABOsD2Cv0nFmTuEyzggYLc6Mo3zrzITCFkQn8uLr9Cz51UOidUXuC5Yc9knUNKUcV00J83v5a1uf1a_ndB607-bD_s5mfuE9e7odlJwbEho1VKA_XQNXosBPRMuzHMfa5Hvie80l9Ct59DADAnPtbkMQuy0a305l3OBTMbK74agBT-aQ_sIfWwIP8Lcnw7Q3WaM_hXmtDljF5gZto4e5WYAlYXECu7UtTs5ER6RQ6grXauMcl0EpMEnPsSRHxdzTx7JyJOPCanpbd7ELPEvBIwWhvUw7fNgRYs6Xt6h_Du1CvVAinEEFH6vQUCQS6ioClSCc3F2MRVaR41-XF6wj0_3jAAcXcnNCGhs6TPbpPWWNLzDkMEbb6-V6T701PR1PJU4hhrP8QN2LA4pXmw-6pokEoigLd', 'width' => 3024), array('height' => 3023, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/102558747254904763203">Johannes Horak</a>'), 'photo_reference' => 'AWn5SU5gvgpwHpmsYa5PpLqJQnuCcOSyZCxJZCrkTUkd_mfxwMwDhbp7iwHIzIWv0PR3rpg2UmWfpcGE80JVWpdDBAc6RA2u-arwtPNVzvKvw_14e1JcwUMT1ZzUsiMvvFcpFbgp_kX3obtAKcGVoMYIJzC89VTDLlO2ST7ybROCNTcPlsuJNXc0hka_o1YeTZCu0T224xUk2rQEVpRJdnLmP_lxwpYtsJ2tprG6eDZk0hh0h_aMTIhjFTaXFX3DuqninnXKS7Gwh7do0n4lnbLbDskg-HrHImdB8XK8ve_WzsI9rtrHOekamg-5__ZYkAZ_ZEHuBzILK5-VAEx8bgjhi6tW8KmbyoCDmGK582nYG9lxce0I3kJJY_m9wnaHDA4V1VhxzkI7pFkWwq4ogyyPe2hFB1LdpZ6Kt_2YgFVF-MrnX1CAJpa0XBte6xIbLg', 'width' => 4031), array('height' => 4000, 'html_attributions' => array('<a href="https://maps.google.com/maps/contrib/113551730288621145761">Hilde VW</a>'), 'photo_reference' => 'AWn5SU4fmXlKCaiCRLuZ9hd4j7LoZk3jZJpV555yOpF6BqHlrhgI_yrgvWsRu198Qg1-n11PmSy6pmvodX79Tif1FLHKV24gDS7L4yiCghgGMeMYoJc5PmxTi9Vo-YbbhpKoLoG1p_hWmeIsv_VQKTk9HYGgCgq7ro3TsQsVxxxlHArvKDjvUHPmdfoRhNxbFLXjKE_ve5MBedAfpSX85h7yZIOdHN4LxClTnBRVh0uvHplzySA9HDyLhVUSRL0VhJTCUsRa3Orv0uD6LXwFKsS12sOnDLajxpeeBR5T7Aa90T4237KBhgcv8dmZZJKUNwQXHFUh2fOMJ-56uwdnU8F6H4rXA2eynKvrXSOf3fqvenHu8veKwbUupPSRIUwQJSaEESr0ptutb_dHzHQZcFe02RNoNXE5t9A6oE7FtHYjBwBGtQ', 'width' => 2252)), '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 semaines', '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 un 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' => 'mathieu massé', 'author_url' => 'https://www.google.com/maps/contrib/100165525192621309085/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a/ACg8ocI1Yx67LiXYZ6SZfFn5kgX5ARewGNcImrV7IHDt-zYvU6fHvsVf=s128-c0x00000000-cc-rp-mo-ba2', 'rating' => 5, 'relative_time_description' => 'il y a une semaine', 'text' => 'Arrivée sur le tard en presque fin de service mais nous avons été très bien accueilli.Un joli restaurant avec une carte courte proposant des produits de saison et des producteurs locaux.Dégustation d\'un magnifique foie gras (maison Albié), et d\'une cuisse d\'oie confite, préparée magnifiquement avec des légumes de saison.Service impeccable et amicale. Très bons conseils de visites pour un après-midi pluvieux.Je recommande vivement', 'time' => 1761563955, '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-UjUzXhIEHdNm88vnL1S7ZPAslQg4NB4W_fQb7cEOKlnHgnB2qGqs=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 5, 'relative_time_description' => 'il y a 2 semaines', 'text' => 'Accueil très sympathique.Très bonne cuisine locale.Décoration originale', 'time' => 1760614995, 'translated' => false), array('author_name' => 'Bilbon Lehobbit', 'author_url' => 'https://www.google.com/maps/contrib/105968091408603288119/reviews', 'language' => 'fr', 'original_language' => 'fr', 'profile_photo_url' => 'https://lh3.googleusercontent.com/a-/ALV-UjV-Fz1W2HVd_ZJulMdR1bmL_7iNaNkoWegirGJ9wki6VKyJxE1w=s128-c0x00000000-cc-rp-mo-ba4', 'rating' => 4, 'relative_time_description' => 'il y a 6 mois', 'text' => 'Restaurant sympathique, la décoration mérite le détour. Le personnel est professionnel. Les plats proposés sont bons. Une étoile en moins pour la cuisse de canard confite. Les 3 commandées étaient très cuites et sèches. Peut être dû au service un peu long et elles sont restées un poil trop longtemps sous la salamandre. Dommage car l\'accompagnement était très bon.', 'time' => 1745329726, '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/'), 'status' => 'OK')))
     (src/Controller/HomeController.php:116)
  at App\Controller\HomeController->list(object(ShopRepository), object(CategoryRepository), object(Request), '2')
     (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)                
Loading…
Loading the web debug toolbar…
Attempt #

Notice: fwrite(): Write of 449 bytes failed with errno=122 Disk quota exceeded in /home/bestofi/bestof/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 159