<html>
<table>
<thead>
<tr>
<th style="font-size: 18px"><?php echo e(translate('brand_List')); ?></th>
</tr>
<tr>
<th><?php echo e(translate('brand_Analytics').' '.'-'); ?></th>
<th></th>
<th>
<?php echo e(translate('total_Brand').' '.'-'.' '.count($data['brands'])); ?>
<br>
<?php echo e(translate('inactive_Brand').' '.'-'.' '.$data['active']); ?>
<br>
<?php echo e(translate('active_Brand').' '.'-'.' '.$data['inactive']); ?>
</th>
</tr>
<tr>
<th><?php echo e(translate('search_Criteria')); ?>-</th>
<th></th>
<th> <?php echo e(translate('search_Bar_Content').' '.'-'.' '.$data['search'] ?? 'N/A'); ?></th>
</tr>
<tr>
<td> <?php echo e(translate('SL')); ?> </td>
<td> <?php echo e(translate('brand_Logo')); ?></td>
<td> <?php echo e(translate('name')); ?></td>
<td> <?php echo e(translate('total_Product')); ?> </td>
<td> <?php echo e(translate('total_Order')); ?> </td>
<td> <?php echo e(translate('status')); ?> </td>
</tr>
<?php $__currentLoopData = $data['brands']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td> <?php echo e(++$key); ?> </td>
<td style="height: 70px"></td>
<td> <?php echo e($item['defaultName']); ?></td>
<td> <?php echo e($item->brand_all_products_count); ?></td>
<td> <?php echo e($item['brandAllProducts']->sum('order_details_count')); ?></td>
<td> <?php echo e(translate($item->status == 1 ? 'active' : 'inactive')); ?></td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</thead>
</table>
</html>
<?php /**PATH /home/amkworld/public_html/resources/views/file-exports/brand-list.blade.php ENDPATH**/ ?>