<?php $__env->startSection('body'); ?>
    <div class=" wrapper-content animated fadeInRight">
        <div class="row">
            <div class="col-lg-12">
                <div class="ibox float-e-margins">
                    <div class="ibox-content">
                        <a href="<?php echo e(url('/edit-team/edit')); ?>" class="btn btn-outline btn-info pull-right">
                            <i class="fa fa-plus"></i>Adauga
                        </a>
                        <h2 class="ibox-title"> Lista de echipe</h2>
                    </div>
                    <div class="ibox-content">
                        <div class="table-responsive">
                            <table class="table table-striped table-hover">
                                <thead>
                                <tr>
                                    <th>Nume</th>
                                </tr>
                                </thead>
                                <tbody>
                                <?php foreach($items as $item): ?>
                                    <tr>
                                        <td><?php echo e($item->name); ?></td>
                                        <td class="text-right">
                                            <a href="<?php echo e(url('/edit-team/edit/' . $item->id)); ?>" type="button"
                                               class="btn btn-w-m btn-info"><i
                                                        class="fa fa-pencil"></i>&nbsp;Editare</a>
                                        </td>
                                    </tr>
                                <?php endforeach; ?>
                                </tbody>
                            </table>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('tpl', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>