

<a href="<?php echo e($url); ?>" class="<?php echo e($class??''); ?>" <?php if(isset($blank)): ?> target="_blank" <?php endif; ?> <?php if(isset($data_num)): ?> data-num="<?php echo e($data_num); ?>" <?php endif; ?> <?php if(isset($history_count)): ?> data-history="<?php echo e($history_count); ?>" <?php endif; ?>><span class="<?php echo e($history_price_change ?? ''); ?>"><?php echo e($title); ?></span></a>
<i class="fa" aria-hidden="true"></i>

<?php $sort = $sort ?? "" ?>
<?php if(!empty($sort)): ?>
    <?php if(request()->get('sort') == $sort && request("search_sort") == "desc" ): ?>
        <i class="fa fa-long-arrow-down" aria-hidden="true"></i>
    <?php endif; ?>
    <?php if(request()->get('sort') == $sort && request("search_sort") == "asc" ): ?>
        <i class="fa fa-long-arrow-up" aria-hidden="true"></i>
    <?php endif; ?>
<?php endif; ?>
