<?php $__env->startSection("content"); ?>
        <!-- Content Header (Page header) -->
<section class="content-header">
    <h1>
        <?php echo e(trans('admin.Plugins')); ?>

        <small><?php echo e(trans('admin.AllBuzzyPlugins')); ?></small>
    </h1>
    <ol class="breadcrumb">
        <li><a href="#"><i class="fa fa-dashboard"></i> <?php echo e(trans('admin.dashboard')); ?></a></li>
        <li class="active"><?php echo e(trans('admin.Plugins')); ?></li>
    </ol>
</section>

<!-- Main content -->
<section class="content">

<div class="row">
    <?php foreach($plugins as $plugin): ?>
        <?php $p_status = getenvcong('p-'.$plugin['p_code']) =='on' ? 'actived' : 'notactived' ?>
       <?php if($p_status=='actived'): ?>
        <div class="col-lg-4 col-md-6 col-xs-12">
        <?php echo $__env->make('_admin._particles.plugin_box', $plugin, array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
        </div>
        <?php endif; ?>
    <?php endforeach; ?>
</div>
<h2 style="color: #aaa;opacity: 0.7"><?php echo e(trans('admin.NotInstalled')); ?></h2>
<div class="row">
<?php foreach($plugins as $plugin): ?>
        <?php $p_status = getenvcong('p-'.$plugin['p_code']) =='on' ? 'actived' : getenvcong('p-'.$plugin['p_code']) =='on' ? 'actived' : 'notactived' ?>
        <?php if($p_status == 'notactived'): ?>
            <div class="col-lg-4 col-md-6 col-xs-12">

            <?php echo $__env->make('_admin._particles.plugin_box', $plugin, array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
            </div>
        <?php endif; ?>
<?php endforeach; ?>

</div>

</section><!-- /.content -->
<?php $__env->stopSection(); ?>
<?php $__env->startSection('footer'); ?>

<?php $__env->stopSection(); ?>
<?php echo $__env->make("_admin.adminapp", array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>