HEX
Server: Apache
System: Linux webm013.cluster123.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: lesanew (165608)
PHP: 8.3.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/lesanew/anestetues2/web/app/cache/acorn/framework/views/cf5ff8a85bd1a453b662d47c9b091646.php
<?php $__env->startPush('vite-head'); ?>
  <?php echo app('Illuminate\Foundation\Vite')(['resources/css/pages/single-local-creator.scss']); ?>
<?php $__env->stopPush(); ?>

<?php $__env->startSection('content'); ?>
  <section class="container bottom-wave">
    <div class="button-container mb">
      <?php
        $shop_page_id = wc_get_page_id('shop');
      ?>

      <?php if($shop_page_id && $shop_page_id > 0): ?>
        <a href="<?php echo e(get_permalink($shop_page_id)); ?>" class="btn arrow-secondary">Voir le shop</a>
      <?php endif; ?>
    </div>

    <div class="columns img-right">
      <div class="column column-img">
        <img
          class="wave-img"
          src="<?php echo e(get_the_post_thumbnail_url() ?? ''); ?>"
          alt="<?php echo e(get_the_post_thumbnail()['alt'] ?? ''); ?>"
        />
      </div>

      <div class="column column-content">
        <h1><?php echo e(get_the_title()); ?></h1>

        <div class="text">
          <?php if(! empty(get_field('description'))): ?>
            <?php echo get_field('description'); ?>

          <?php endif; ?>
        </div>
      </div>
    </div>
  </section>

  <?php
    $produits_createur = new WP_Query([
      'post_type' => 'produit_createur',
      'posts_per_page' => -1,
      'meta_query' => [
        [
          'key' => 'createur',
          'value' => '"' . get_the_ID() . '"',
          'compare' => 'LIKE',
        ],
      ],
    ]);
  ?>

  <?php if($produits_createur->have_posts()): ?>
    <section class="container bg-primary text-light center">
      <div class="mt">
        <div class="products-grid">
          <?php while($produits_createur->have_posts()): ?>
            <?php
              $produits_createur->the_post();
              $prix = get_field('prix', get_the_ID());
            ?>

            <article class="product-item">
              <a href="<?php echo e(get_permalink()); ?>">
                <?php echo get_the_post_thumbnail(null, 'medium', ['class' => 'wave-img']); ?>

              </a>

              <p class="product-title">
                <a href="<?php echo e(get_permalink()); ?>"><?php echo e(get_the_title()); ?></a>
              </p>

              <?php if(! empty($prix)): ?>
                <div class="product-price"><?php echo e(number_format($prix, 2, ',', ' ')); ?>&nbsp;€</div>
              <?php endif; ?>
            </article>
          <?php endwhile; ?>

          <?php
            wp_reset_postdata();
          ?>
        </div>
      </div>
    </section>
  <?php endif; ?>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.app', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /home/gaetan/www/les-anes-tetus-2.0/web/app/themes/anes-tetues/resources/views/single-createur_local.blade.php ENDPATH**/ ?>