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/SBogers10/topswtw.komma.pro/app/storage/views/c18cf872df4e2fbc78d1b73426cdbce4
<div class="entity-attribute entity-attribute"> <table width="100%" class="customer-table"> <tr> <th width="60px">Klant nr</th> <th>Naam</th> <th>Email</th> <th>Bedrijf</th> <th>Straat + nr</th> <th>Gemeente</th> <th width="60px">Postcode</th> </tr> <?php foreach($customers as $one_customer): ?> <tr class="customer-row"> <td><a href="<?php echo route('kms.customers.search.detail',['customer' => $one_customer['id'], 'shop' => $shopSlug]); ?>#customer"><?php echo $one_customer['customer_number']; ?></a></td> <td><?php echo $one_customer['first_name']; ?> <?php echo $one_customer['last_name']; ?> <?php echo $one_customer['name_insertion']; ?></td> <td><?php echo $one_customer['email']; ?></td> <td><?php echo isset($one_customer['company']) ? $one_customer['company'] : '/'; ?></td> <td><?php echo $one_customer['street']; ?> <?php echo $one_customer['house_number']; ?> - <?php echo $one_customer['house_number_suffix']; ?></td> <td><?php echo $one_customer['city']; ?></td> <td><?php echo $one_customer['postal']; ?></td> </tr> <?php endforeach; ?> </table> </div>