@if(is_array($popularPosts) && !empty($popularPosts))

Most Popular Posts

    @foreach($popularPosts as $popularPost)
  1. {!! $popularPost->title !!}
  2. @endforeach
@endif @if(is_array($recentPosts) && !empty($recentPosts))

Most Recent Posts

    @foreach($recentPosts as $recentPost)
  1. {!! $recentPost->title !!}
  2. @endforeach
@endif