Current File : /home/tradevaly/public_html/storage/framework/views/cfe45437a49e6637c58235714620a683054ba942.php

<?php $__env->startPush('title'); ?> Tags <?php $__env->stopPush(); ?>
<?php $__env->startSection('css'); ?>
    <!-- DataTables -->
    <link href="<?php echo e(asset('/assets/libs/datatables/datatables.min.css')); ?>" rel="stylesheet" type="text/css" />
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>

    <?php $__env->startComponent('components.breadcrumb'); ?>
        <?php $__env->slot('li_1'); ?> Dashboards <?php $__env->endSlot(); ?>
        <?php $__env->slot('title'); ?> Tags <?php $__env->endSlot(); ?>
    <?php echo $__env->renderComponent(); ?>
<div class="row">
        <div class="col-12">
            <div class="card">
                <div class="card-body">
                    <div class="row mb-2">
                        <div class="col-sm-4"></div>
                        <div class="col-sm-8">
                            <div class="text-sm-end">
                                <a href="<?php echo e(url('b2b/tags/add')); ?>"
                                    class="btn btn-success btn-rounded waves-effect waves-light mb-2 me-2"><i
                                        class="mdi mdi-plus me-1"></i> Add New Tags</a>
                            </div>
                        </div><!-- end col-->
                    </div>

                    <div class="table-responsive">
            <table class="table">
              <thead>
                <tr>
                  <th class="text-center">#</th>
                  <th><?php echo e(translate("Name")); ?></th>
                  <th><?php echo e(translate("Views")); ?></th>
                  <th><?php echo e(translate("Category ID")); ?></th>
                  <th class="text-right"><?php echo e(translate("Actions")); ?></th>
                </tr>
              </thead>
              <tbody>
                <?php
                   $i = 0;
                ?>
                <?php $__currentLoopData = $tags; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $tag): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                <tr>
                  <?php $i++; ?>
                  <td class="text-center"><?php echo e($i); ?></td>
                  <td><?php echo e($tag['name']); ?></td>
                  <td><?php echo e($tag['views']); ?></td>
                  <td>
                      <?php if(!empty($tag->category_id) && is_array(json_decode($tag->category_id))): ?>
                      <?php
                      $data = \App\Models\Category::whereIn('id', json_decode($tag->category_id))->pluck('name')->implode(',');
                      ?>
                      <?php echo e($data); ?>

                      <?php endif; ?>
                  </td>
                  <td class="td-actions text-right">
                    <a href="<?php echo e(url('b2b/tags/delete',$tag->id)); ?>" name="Tag" class="btn bg-danger text-white " title="Delete"> Delete
                    </a>
                  </td>
                </tr>
                <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
              </tbody>
            </table>
         </div>
                    
                </div>
            </div>
        </div>
    </div>
    <!-- end row -->
    
    
<?php $__env->stopSection(); ?>
<?php $__env->startSection('script'); ?>
    <!-- Required datatable js -->
    <script src="<?php echo e(asset('/assets/libs/datatables/datatables.min.js')); ?>"></script>
    <script src="<?php echo e(asset('/assets/libs/jszip/jszip.min.js')); ?>"></script>
    <script src="<?php echo e(asset('/assets/libs/pdfmake/pdfmake.min.js')); ?>"></script>
    <!-- Datatable init js -->
     
    <script type="text/javascript">
  $(function () {
    
    $(document).ready(function () {
 
  var table = $('.table').DataTable({
    lengthChange: false,
    processing: true,
    dom: 'Bfrtip',
       
    buttons: ['copy', 'excel', 'pdf', 'colvis']
  });
  table.buttons().container().appendTo('#datatable-buttons_wrapper .col-md-6:eq(0)');
  $(".dataTables_length select").addClass('form-select form-select-sm');
});
});
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('backend.ayaan.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/tradevaly/public_html/resources/views/backend/pages/tags/index.blade.php ENDPATH**/ ?>