HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers42/tandartsmaas.nl/app/storage/views/2446ff752a493bf1a5b8df10573a8d18
<?php $__env->startSection('content'); ?>

    <div class="line one"></div>
    <div class="line two"></div>

    <ul class="reviews-list isotope">

        <?php foreach($ratings as $rating): ?>

            <li>
                <div class="review">
                    <span class="avatar">
                        <img src="<?php echo $rating->reviewer->profile_pic; ?>" alt="Profile picture <?php echo $rating->reviewer->name; ?>" />
                    </span>

                    <span class="name"><?php echo $rating->reviewer->name; ?></span>

                    <?php if(isset($rating->review_text)): ?>
                        <p>
                            <?php echo $rating->review_text; ?>

                        </p>
                    <?php endif; ?>

                    <span class="rating">
                        <span class="stars">
                            <?php for($i=1;$i<=5;$i++): ?>

                                <?php if($rating->rating >= $i): ?>
                                    <span class="star"></span>
                                <?php else: ?>
                                    <span class="star empty"></span>
                                <?php endif; ?>

                            <?php endfor; ?>
                        </span>
                        <span class="date"><?php echo $rating->created_time; ?></span>
                    </span>
                </div>
            </li>

        <?php endforeach; ?>

        <li>
            <div class="review write">
                <span class="avatar"></span>
                <span class="name">Zelf een referentie schrijven</span>
                Heb je zelf ook een goede ervaring met Tandarts Maas?
                Laat je beoordeling achter op <a href="https://www.facebook.com/pages/Tandarts-Maas/766764863364715?sk=reviews" target="_blank">Facebook</a>!

                <a class="button purple" href="https://www.facebook.com/pages/Tandarts-Maas/766764863364715?sk=reviews" target="_blank">Beoordeling geven</a>
            </div>
        </li>
    </ul>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>