
<?php $__env->startSection('title', 'Ayarlar'); ?>


<?php $__env->startSection('_content'); ?>

<h1 class="title">Ayarlar</h1>

<div class="list-group">
    <?php foreach($groups as $group): ?>
    <a href="<?php echo URL::to('option/edit/'.$group->id); ?>" class="list-group-item"><?php echo $group->group; ?> <span class="badge"><?php echo $group->options()->count(); ?></span></a>
    <?php endforeach; ?>
</div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.wrap', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>