@php
$itemsPerPage = 6;
$chunks = $categoryProgress->chunk($itemsPerPage);
@endphp
@foreach($chunks as $pageIndex => $page)
@foreach($page as $category)
{{ number_format($category['progress'], 0) }}%
@if(!$loop->last)
@endif
@endforeach
@endforeach
@foreach($chunks as $index => $chunk)
@endforeach