@php $highLightedCoins = App\Models\Currency::active() ->crypto() ->where('highlighted_coin', Status::YES) ->with('marketData') ->rankOrdering() ->take(4) ->get(); @endphp
@lang('Highlight Coin')
@forelse ($highLightedCoins as $highLightedCoin)
{{ @$highLightedCoin->symbol }} {{ showAmount(@$highLightedCoin->marketData->price, 8) }} {{ getAmount(@$highLightedCoin->marketData->percent_change_1h) }}%
@empty

@lang('No coin found')

@endforelse