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/SBogers60/vandeurzenheftrucks.nl/app/views/layouts/partials/machineData.blade.php
<table id="machine-data">

    <h3>Machine gegevens</h3>

    @if($project->type)
        <tr>
            <td class="label">Merk en type:</td>
            <td class="data">{{ $project->type }}</td>
        </tr>
    @endif

    @if($project->fuel)
        <tr>
            <td class="label">Brandstof:</td>
            <td class="data">{{ $project->fuel }}</td>
        </tr>
    @endif

    @if($project->year)
        <tr>
            <td class="label">Bouwjaar:</td>
            <td class="data">{{ $project->year }}</td>
        </tr>
    @endif

    @if($project->hours)
        <tr>
            <td class="label">Urenstand:</td>
            <td class="data">{{ $project->hours }}</td>
        </tr>
    @endif

    @if($project->mast_type)
        <tr>
            <td class="label">Mast type:</td>
            <td class="data">{{ $project->mast_type }}</td>
        </tr>
    @endif

    @if($project->lifting_capacity)
        <tr>
            <td class="label">Hefcapaciteit:</td>
            <td class="data">{{ $project->lifting_capacity }} kg</td>
        </tr>
    @endif

    @if($project->lifting_height)
        <tr>
            <td class="label">Hefhoogte:</td>
            <td class="data">{{ $project->lifting_height }} mm</td>
        </tr>
    @endif

    @if($project->extra)
        <tr>
            <td class="label">Extra:</td>
            <td class="data">{{ $project->extra }}</td>
        </tr>
    @endif

</table>