<div id="opt-out-keywords" class="data-list-view-header"> <div class="mb-3 mt-2"> <div class="btn-group"> <a href="#" class="btn btn-success waves-light waves-effect fw-bold add_opt_out_keyword"> <?php echo e(__('locale.buttons.add_new')); ?> <i data-feather="plus-circle"></i> </a> </div> </div> <div class="row"> <div class="col-12"> <div class="card"> <table class="table opt-out-keywords"> <thead> <tr> <th><?php echo e(__('locale.labels.keyword')); ?> </th> <th><?php echo e(__('locale.labels.added_at')); ?></th> <th><?php echo e(__('locale.labels.actions')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $opt_out_keywords; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $keywords): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($keywords->keyword); ?></td> <td><?php echo e(\App\Library\Tool::formatHumanTime($keywords->created_at)); ?></td> <td> <span class='action-delete-optout-keyword text-danger' data-id='<?php echo e($keywords->uid); ?>' data-bs-toggle='tooltip' data-placement='top' title='<?php echo e(__('locale.buttons.delete')); ?>'><i data-feather="trash" class="feather-24"></i></span> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> <?php /**PATH /home/bouloter/sms/resources/views/customer/contactGroups/_opt_out_keywords.blade.php ENDPATH**/ ?>