| Line 12... |
Line 12... |
| 12 |
<tr>
|
12 |
<tr>
|
| 13 |
<th align="center"><?php echo h('ID'); ?></th>
|
13 |
<th align="center"><?php echo h('ID'); ?></th>
|
| 14 |
<th align="center"><?php echo h('User Id'); ?></th>
|
14 |
<th align="center"><?php echo h('User Id'); ?></th>
|
| 15 |
<th align="center"><?php echo h('Created'); ?></th>
|
15 |
<th align="center"><?php echo h('Created'); ?></th>
|
| 16 |
<th align="center"><?php echo h('Response Time'); ?></th>
|
16 |
<th align="center"><?php echo h('Response Time'); ?></th>
|
| 17 |
<th align="center"><?php echo h('Status'); ?></th>
|
17 |
<th align="center"><?php echo h('Response'); ?></th>
|
| 18 |
|
18 |
|
| 19 |
</tr>
|
19 |
</tr>
|
| 20 |
<?php foreach ($data as $notificationCampaign): ?>
|
20 |
<?php foreach ($data as $notificationCampaign): ?>
|
| 21 |
<tr>
|
21 |
<tr>
|
| 22 |
<td align="center" width="4%"><?php echo h($notificationCampaign['pushnotifications']['id']); ?> </td>
|
22 |
<td align="center" width="4%"><?php echo h($notificationCampaign['pushnotifications']['id']); ?> </td>
|
| 23 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['user_id']); ?> </td>
|
23 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['user_id']); ?> </td>
|
| 24 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['created']); ?> </td>
|
24 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['created']); ?> </td>
|
| 25 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['response_time']); ?> </td>
|
25 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['response_time']); ?> </td>
|
| 26 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['status']); ?> </td>
|
26 |
<td align="center"><?php echo h($notificationCampaign['pushnotifications']['message']); ?> </td>
|
| 27 |
</tr>
|
27 |
</tr>
|
| 28 |
<?php endforeach; ?>
|
28 |
<?php endforeach; ?>
|
| 29 |
</table>
|
29 |
</table>
|
| 30 |
</div>
|
30 |
</div>
|
| 31 |
|
31 |
|