@if ($data instanceof Illuminate\Pagination\LengthAwarePaginator && $data->withQueryString())
@php $info = $data->total() > 0 ? ($data->currentPage() - 1) * $limit + 1 : 0; $info .= '- ' . ($limit < $data->total() ? $data->currentPage() * $limit : $data->total()) . ' '; $info .= trans('core/base::tables.in') . ' ' . $data->total() . ' ' . trans('core/base::tables.records'); @endphp {{ $info }}
@endif