<tr<?php echo e(html_classes('bg-light', $table->getTrClasses())); ?>>
    <?php $__currentLoopData = $table->getColumns(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $column): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
        <th<?php echo e(html_classes($table->getThClasses())); ?> scope="col">
        <?php if($column->getIsSortable()): ?>
            <a class="d-flex"
               href="<?php echo e($table->getRoute('index', array_merge([
                    $table->getRowsNumberField() => $table->getRequest()->get($table->getRowsNumberField()),
                    $table->getSearchField() => $table->getRequest()->get($table->getSearchField()),
                    $table->getSortByField() => $column->getDbField(),
                    $table->getSortDirField() => $table->getRequest()->get($table->getSortDirField()) === 'desc' ? 'asc' : 'desc',
                ], $table->getAppendedToPaginator()))); ?>"
               title="<?php echo e($column->getTitle()); ?>">
                <?php if($table->getRequest()->get($table->getSortByField()) === $column->getDbField()
                    && $table->getRequest()->get($table->getSortDirField()) === 'asc'): ?>
                    <span class="sort asc"><?php echo config('laravel-table.icon.sort_asc'); ?></span>
                <?php elseif($table->getRequest()->get($table->getSortByField()) === $column->getDbField()
                    && $table->getRequest()->get($table->getSortDirField()) === 'desc'): ?>
                    <span class="sort desc"><?php echo config('laravel-table.icon.sort_desc'); ?></span>
                <?php else: ?>
                    <span class="sort"><?php echo config('laravel-table.icon.sort'); ?></span>
                <?php endif; ?>
                <span>
                    <?php echo str_replace(' ', '&nbsp;', $column->getTitle()); ?>

                </span>
            </a>
        <?php else: ?>
            <?php echo str_replace(' ', '&nbsp;', $column->getTitle()); ?>

        <?php endif; ?>
        </th>
    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
    <?php if($table->isRouteDefined('show') || $table->isRouteDefined('edit') || $table->isRouteDefined('destroy')): ?>
        <th<?php echo e(html_classes('text-right', $table->getThClasses())); ?> scope="col">
            <?php echo app('translator')->get('Actions'); ?>
        </th>
    <?php endif; ?>
</tr>
<?php /**PATH /var/www/html/vendor/okipa/laravel-table/src/../resources/views/bootstrap/column-titles.blade.php ENDPATH**/ ?>