What I want to do is separate data in 2 or 3 table column
here is my code, but my code now is only display in one column
<?php if(isset($queue_record)) : foreach($queue_record as $row) : ?>
<tr>
<td>
<label class="checkbox ">
<input type="checkbox" name="check_queue[]" id="inlineCheckbox1"
class="inlineCheckbox1" value="<?php echo $row->tenantqueueid; ?>">
<?php echo $row->queuename; ?>
</label>
</td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
What I actually want to display, but the screenshot data just a sample, actually the 2 column data are different
