<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>MX-HomePro System Information</title>
  </head>
  <body>

    <!-- Room informations -->
    <h1>Room Usage</h1>

    <table border="1">
        <tr>
            <th>Rooms</th>
            <th>Systems</th>
        </tr>

        <?php foreach ($rooms as $room) : ?>

        <tr>
            <td><?= $room->room_cnt; ?></td>
            <td><?= $room->system_cnt; ?></td>
        </tr>
        
        <?php endforeach; ?>
    </table>


    <!-- Room informations -->
    <h1>Mobile Usage</h1>

    <ul>
        <li> System (No Remote control) : <?= $mobile_usage->system; ?></li>
        <li> System (No Remote control in master) : <?= $mobile_usage->master; ?></li>
        <li> System (No Remote control in slave) : <?= $mobile_usage->slave; ?></li>
    </ul>

   <!-- Twoway Devices informations -->
    <h1>Twoway Device Usage</h1>

    <table border="1">
        <tr>
            <th>Device Name</th>
            <th>Count</th>
        </tr>

        <?php foreach ($twoway_devices as $device) : ?>

        <tr>
            <td><?= $device->name; ?></td>
            <td><?= $device->system_cnt; ?></td>
        </tr>
        
        <?php endforeach; ?>
    </table>

</body>
</html>
