File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/de1321f294246b1378ef9c7e536dba99
<table class="composition"> <tr class="composition-header"> <td class="composition-quantity"><?php echo Lang::get('pages/products.composition.quantity'); ?></td> <td class="composition-type"><?php echo Lang::get('pages/products.composition.type'); ?> + <?php echo Lang::get('pages/products.composition.size'); ?></td> <td class="composition-class"><?php echo Lang::get('pages/products.composition.class'); ?></td> </tr> <?php foreach($composition as $composite): ?> <tr> <td colspan="3"> <table class="composition-inner-table"> <tr> <td class="composition-quantity"><?php echo $composite->quantity; ?> x</td> <td class="composition-type"><?php echo $composite->type; ?><br /><span class="nowrap"><?php echo $composite->size; ?></span></td> <td class="composition-class"><?php echo $composite->class; ?></td> </tr> <?php if(isset($composite->special)): ?> <tr> <td> </td> <td colspan="2" class="composition-note"> <?php echo Lang::get('pages/products.composition.note'); ?>: <?php echo $composite->special; ?> </td> </tr> <?php endif; ?> </table> </td> </tr> <?php endforeach; ?> </table>