@if ($posts->isNotEmpty())
@foreach($posts as $post)
{!! Theme::partial('posts.item', compact('post')) !!}
@endforeach
{!! $posts->withQueryString()->links(Theme::getThemeNamespace('partials.pagination')) !!}
@else
{{ __('No data available') }}
@endif