<?php $__env->startSection('title', 'ReBoot admin'); ?>

<?php $__env->startSection('content'); ?>
    <div class="page-header">
        <h1>Welcome to ReBoot admin section</h1>
    </div>

    <div class="clearfix">
        <h4 class="pull-left"><?php echo e(count($businesses)); ?> Businesses listed</h4>
        <a href="<?php echo e(URL::route('admin.business.create')); ?>" class="btn btn-default pull-right btn-spaced-left">Create new</a>
        <a href="<?php echo e(URL::route('admin.business.index')); ?>" class="btn btn-default pull-right btn-spaced">View all</a>
        <a href="<?php echo e(URL::route('admin.assignedActions.createFor', 'business')); ?>" class="btn btn-default pull-right btn-spaced">Assign actions to businesses</a>
    </div>

    <hr>

    <div class="clearfix">
        <h4 class="pull-left"><?php echo e(count($actions)); ?> Actions listed</h4>
        <a href="<?php echo e(URL::route('admin.action.create')); ?>" class="btn btn-default pull-right btn-spaced-left">Create new</a>
        <a href="<?php echo e(URL::route('admin.action.index')); ?>" class="btn btn-default pull-right btn-spaced">View all</a>
        <a href="<?php echo e(URL::route('admin.assignedActions.create')); ?>" class="btn btn-default pull-right btn-spaced">Assign actions to businesses or outputs</a>
    </div>

    <hr>

    <div class="clearfix">
        <h4 class="pull-left"><?php echo e(count($outputs)); ?> Outputs listed</h4>
        <a href="<?php echo e(URL::route('admin.output.create')); ?>" class="btn btn-default pull-right btn-spaced-left">Create new</a>
        <a href="<?php echo e(URL::route('admin.output.index')); ?>" class="btn btn-default pull-right btn-spaced">View all</a>
        <a href="<?php echo e(URL::route('admin.assignedActions.createFor', 'output')); ?>" class="btn btn-default pull-right btn-spaced">Assign outputs to actions</a>
    </div>



<?php $__env->stopSection(); ?>

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