<?php $__env->startSection('clients'); ?>
            <a class="item" href="<?php echo e(action('ClientController@getAll')); ?>">
                <i class="ion-ios-people-outline icon"></i> <div class="content"><?php echo e(trans('sidebar.link.clients')); ?> </div>
            </a>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('brokers'); ?>
            <a class="item" href="<?php echo e(action('BrokerController@getAll')); ?>">
                <i class="ion-ios-briefcase-outline icon"></i> <div class="content"><?php echo e(trans('sidebar.link.brokers')); ?> </div>
            </a>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('products'); ?>
            <a class="item" href="<?php echo e(action('ProductController@getAll')); ?>">
                <i class="ion-ios-lightbulb-outline icon"></i> <div class="content"><?php echo e(trans('sidebar.link.products')); ?> </div>
            </a>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('companies'); ?>
            <a class="item" href="<?php echo e(action('CompanyController@getAll')); ?>">
                <i class="ion-ios-flower-outline icon"></i> <div class="content"><?php echo e(trans('sidebar.link.companies')); ?> </div>
            </a>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('staff'); ?>
            <a class="item" href="<?php echo e(action('StaffController@getAll')); ?>">
                <i class="ion-ios-person-outline icon"></i> <div class="content"><?php echo e(trans('sidebar.link.staff')); ?> </div>
            </a>
<?php $__env->stopSection(); ?>

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