@php $popularHashtags = \App\Providers\PostsHelperServiceProvider::getTopHashtags(10); @endphp
{{__('Popular hashtags')}}
@if(!empty($popularHashtags))
@foreach($popularHashtags as $row)
#{{ $row['tag'] }} ({{ $row['uses'] }})
@endforeach
@else
{{__('No hashtags yet.')}}
@endif