@foreach($posts as $post)
$perItem == 1,
'col-lg-6' => $perItem == 2,
'col-lg-4' => $perItem == 3,
])>
{!! Theme::partial('blog.post.item', compact('post')) !!}
@endforeach
@if ($posts instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator)
{!! $posts->withQueryString()->links(Theme::getThemeNamespace('partials.pagination')) !!}
@endif