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/BVerhoeven/verhoevendak.nl/app/storage/views/b48d4fab4a8b7c1daccf3f62746e321a
<?php echo debug($projects); ?>

<?php foreach($projects as $item): ?>
    <article id="<?php echo $item->id; ?>" class="grid-col col-4 <?php if(!isset($item->images) || $item->images->count() == 0): ?> no-image <?php endif; ?>">
        <a href="/<?php echo $item->translations->first()->routes->filter(function($route) use ($page) {
                            if( starts_with($route->route, $page->translation->route->route)){
                                return $route->route;
                            }
                        })->first()->route;; ?>">
            <figure <?php if($item->images->count() != 0): ?> style="background-image: url('<?php echo $item->images->first()->medium_image_url; ?>');"<?php endif; ?>>
                <span class="overlay"></span>
            </figure>

            <div class="content">
                <h3><?php echo $item->translations->first()->location_string; ?></h3>

            </div>
        </a>
    </article>
<?php endforeach; ?>