File: /home/lesanew/anestetues2/web/app/cache/acorn/framework/views/6302d8276fc7d9de06ae930ec3cdf73d.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, ',', ' ')); ?> €</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/lesanew/anestetues2/web/app/themes/anes-tetues/resources/views/single-createur_local.blade.php ENDPATH**/ ?>