<div class="row">
<div class="col-12">
<div class="card">
<table class="table mb-0">
<thead class="thead-primary">
<tr>
<th scope="col"><?php echo e(__('locale.labels.submitted')); ?></th>
<th scope="col"><?php echo e(__('locale.labels.status')); ?></th>
<th scope="col"><?php echo e(__('locale.labels.message')); ?></th>
</tr>
</thead>
<tbody>
<?php $__empty_1 = true; $__currentLoopData = $import_history; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $history): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
<tr>
<td> <?php echo e(\App\Library\Tool::customerDateTime($history->created_at)); ?> </td>
<td> <?php echo $history->getStatus(); ?> </td>
<td><?php echo e($history->getOption('message')); ?></td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
<tr>
<td class="text-center" colspan="5">
<?php echo e(__('locale.datatables.no_results')); ?>
</td>
</tr>
<?php endif; ?>
</tbody>
</table>
</div>
</div>
</div>
<?php /**PATH /home/bouloter/sms/resources/views/customer/contactGroups/_import_history.blade.php ENDPATH**/ ?>