
<div class="drawer">
    <div class="drawer__header clearfix">
        <div class="drawer__header__logo"><a href="/"><img src="<?php echo e(url('/assets/img/logo.png')); ?>" alt=""></a></div>


        <span class="drawer__header__close"><i class="material-icons">&#xE408;</i></span>
    </div>
    <ul class="drawer__menu">
        <li class="drawer__menu__item drawer__menu__item--active">
            <a class="drawer__menu__item__link" href="/" >
                <span class="drawer__menu__item__icon"><i class="material-icons">&#xE88A;</i></span>
                <span class="drawer__menu__item__title"><?php echo e(trans('updates.home')); ?></span>
            </a>
        </li>
        <?php foreach(\App\Categories::where("main", '1')->where("disabled", '0')->orwhere("main", '2')->where("disabled", '0')->orderBy('order')->limit(9)->get() as $categorys): ?>
            <li class="drawer__menu__item ">
                <a class="drawer__menu__item__link" href="<?php echo e(url($categorys->name_slug)); ?>">
                    <span class="drawer__menu__item__icon"><?php echo $categorys->icon; ?></span>
                    <span class="drawer__menu__item__title"><?php echo e($categorys->name); ?></span>
                </a>
            </li>

        <?php endforeach; ?>


        <li class=" drawer__menu__item--border ">
            <div class="reaction-emojis" style="padding:20px 10px">
                <a href="<?php echo e(action('PagesController@showReaction', ['reaction' => 'awesome'] )); ?>" title="<?php echo e(trans('updates.reaction.awesome')); ?>" ><img alt="<?php echo e(trans('updates.reaction.awesome')); ?>" src="<?php echo e(Theme::asset('img/reactions/awesome.gif', null, false)); ?> " width="32"></a>
                <a href="<?php echo e(action('PagesController@showReaction', ['reaction' => 'nice'] )); ?>" title="<?php echo e(trans('updates.reaction.nice')); ?>" ><img alt="<?php echo e(trans('updates.reaction.nice')); ?>" src="<?php echo e(Theme::asset('img/reactions/nice.png', null, false)); ?>" width="32"></a>
                <a href="<?php echo e(action('PagesController@showReaction', ['reaction' => 'loved'] )); ?>" title="<?php echo e(trans('updates.reaction.loved')); ?>" ><img alt="<?php echo e(trans('updates.reaction.loved')); ?>" src="<?php echo e(Theme::asset('img/reactions/loved.gif', null, false)); ?>" width="32"></a>
                <a href="<?php echo e(action('PagesController@showReaction', ['reaction' => 'lol'] )); ?>"  title="<?php echo e(trans('updates.reaction.lol')); ?>" ><img alt="<?php echo e(trans('updates.reaction.lol')); ?>" src="<?php echo e(Theme::asset('img/reactions/lol.gif', null, false)); ?>" width="32"></a>
                <a href="<?php echo e(action('PagesController@showReaction', ['reaction' => 'funny'] )); ?>" title="<?php echo e(trans('updates.reaction.funny')); ?>" ><img alt="<?php echo e(trans('updates.reaction.funny')); ?>" src="<?php echo e(Theme::asset('img/reactions/funny.gif', null, false)); ?>" width="32"></a>
                <a href="<?php echo e(action('PagesController@showReaction', ['reaction' => 'fail'] )); ?>" title="<?php echo e(trans('updates.reaction.fail')); ?>" ><img alt="<?php echo e(trans('updates.reaction.fail')); ?>" src="<?php echo e(Theme::asset('img/reactions/fail.gif', null, false)); ?>" width="32"></a>
                <a href="<?php echo e(action('PagesController@showReaction', ['reaction' => 'omg'] )); ?>"  title="<?php echo e(trans('updates.reaction.omg')); ?>" ><img alt="<?php echo e(trans('updates.reaction.omg')); ?>" src="<?php echo e(Theme::asset('img/reactions/wow.gif', null, false)); ?>" width="32"></a>
                <a href="<?php echo e(action('PagesController@showReaction', ['reaction' => 'ew'] )); ?>" title="<?php echo e(trans('updates.reaction.ew')); ?>" ><img alt="<?php echo e(trans('updates.reaction.ew')); ?>" src="<?php echo e(Theme::asset('img/reactions/cry.gif', null, false)); ?>" width="32"></a>
            </div>
        </li>
    </ul>


</div>