hubtel_sms/views/recipients_preview.php
2025-01-13 19:14:18 +00:00

26 lines
987 B
PHP

<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<?php if (!empty($recipients)) { ?>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th><?php echo _l('client'); ?></th>
<th><?php echo _l('phone_number'); ?></th>
<th><?php echo _l('group'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($recipients as $recipient) { ?>
<tr>
<td><?php echo $recipient['company']; ?></td>
<td><?php echo $recipient['phonenumber']; ?></td>
<td><?php echo $recipient['group_name']; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
<?php } else { ?>
<p class="text-muted text-center"><?php echo _l('no_recipients_found'); ?></p>
<?php } ?>