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/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>&nbsp;</td>
                            <td colspan="2" class="composition-note">
                                {{ Lang::get('pages/products.composition.note') }}: {{$composite->special}}
                            </td>
                        </tr>
                    @endif
                </table>
            </td>
        </tr>
    @endforeach
</table>