<?php if(\App\Widgets::where('type', $position)->where('display', 'on')->first() !== null): ?>
    <div class="clearfix">
    <div class="ads clearfix"  style='height:<?php echo e($height); ?>px; max-width:<?php echo e($width); ?>px;margin:0 auto;'>
        <?php foreach(\App\Widgets::where('type', $position)->where('display', 'on')->get() as $widget): ?>

            <div class="<?php echo $widget->showweb == 'off' ? 'hide-web' : 'show-web'; ?> <?php echo $widget->showmobile == 'off' ? 'hide-phone' : 'visible-mobile'; ?>">
                <?php echo $widget->text; ?>

            </div>

        <?php endforeach; ?>
    </div>
    </div>
<?php endif; ?>