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

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

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

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

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


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

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

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

        <tr>
            <td><?= $device->name; ?></td>
            <td><?= $device->brand; ?></td>
            <td><?= $device->category; ?></td>
            <td><?= $device->cnt; ?></td>
        </tr>
        
        <?php endforeach; ?>
    </table>

</body>
</html>
