File: D:/HostingSpaces/SBogers10/spire.komma-mediadesign.nl/wwwroot/mvc/views/v_paymentMethodsBlock.php
<div class="payment-methods">
<div class="payment-methods__description">
<span class="payment-methods__description-icon arrow"></span>
<p class="payment-methods__description-text">Easy payment through multiple methods</p>
</div>
<div class="payment-methods__icons">
<?php
$paymentMethods = ['ideal','visa','mastercard','paypal','sofort','bancontact','giropay'];
foreach ($paymentMethods as $paymentMethod){
?>
<span class="payment-methods__icon payment-methods__icon--<?php echo $paymentMethod; ?>">
<img class="payment-methods__icon-img" alt="payment method" src="/img/paymentMethods/<?php echo $paymentMethod; ?>.svg" />
</span>
<?php } ?>
</div>
</div>