<table class="display table table-bordered table-striped" id="dynamic-table" >
    <thead>
        <tr>
            <th><?php echo e(trans('ui.orders.customer')); ?></th>
            <th><?php echo e(trans('ui.orders.check_number')); ?></th>
            <th><?php echo e(trans('ui.orders.policy')); ?></th>
            <th><?php echo e(trans('ui.orders.date')); ?></th>
        </tr>
    </thead>
    <tbody>
        <?php foreach($registros as $registro): ?>
        <tr>
            <td><?php echo e($registro->name); ?></td>
            <td><?php echo e($registro->check_number); ?></td>
            <td><?php echo e($registro->policy); ?></td>
            <td><?php echo e($registro->date); ?></td>
        </tr>
    <?php endforeach; ?>
    </tbody>
</table>
