@php
$offset = ($rows->currentPage() - 1) * $rows->perPage();
$isFirstPage = $rows->currentPage() === 1;
$showcaseTop = $isFirstPage ? $rows->getCollection()->take(3)->values() : collect();
$tableRows = $isFirstPage ? $rows->getCollection()->slice(3)->values() : $rows->getCollection();
$rankBase = $isFirstPage ? 3 : 0;
@endphp
@if ($rows->isNotEmpty())
@if ($showcaseTop->isNotEmpty())
No comment activity in the last 30 days.