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