@if($posts->isNotEmpty()) @foreach($posts as $post)
{!! Theme::partial('posts.item', compact('post')) !!}
@endforeach @if ($posts instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator)
{!! $posts->withQueryString()->links(Theme::getThemeNamespace('partials.pagination')) !!}
@endif @else

{{ __('No data available') }}

@endif