<thead>
    <tr<?php echo e(html_classes('bg-white', $table->getTrClasses())); ?>>
        <td<?php echo e(html_classes('px-0', $table->getTdClasses())); ?><?php echo e(html_attributes($table->getColumnsCount() > 1 ? ['colspan' => $table->getColumnsCount()] : null)); ?>>
            <div class="d-flex flex-column flex-xl-row">
                <div class="flex-fill">
                    <?php if($table->getSearchableColumns()->isNotEmpty()): ?>
                        <?php echo $__env->make('laravel-table::' . $table->getRowsSearchingTemplatePath(), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                    <?php endif; ?>
                </div>
                <div class="d-flex justify-content-between">
                    <?php if($table->getRowsNumberDefinitionActivation()): ?>
                        <?php echo $__env->make('laravel-table::' . $table->getrowsNumberDefinitionTemplatePath(), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                    <?php endif; ?>
                    <?php echo $__env->make('laravel-table::' . $table->getCreateActionTemplatePath(), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                </div>
            </div>
        </td>
    </tr>
    <?php echo $__env->make('laravel-table::' . $table->getColumnTitlesTemplatePath(), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</thead>
<?php /**PATH /var/www/html/vendor/okipa/laravel-table/src/../resources/views/bootstrap/thead.blade.php ENDPATH**/ ?>