@php $postStyle = theme_option('post_style'); $postStyle = in_array($postStyle, ['style-1', 'style-2']) ? $postStyle : 'style-1'; @endphp @if ($posts->isNotEmpty())
@foreach($posts as $post)
{!! Theme::partial("blog.post-styles.$postStyle", compact('post')) !!}
@endforeach
@if ($posts instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator && $posts->total() > 0)
{{ $posts->withQueryString()->links(Theme::getThemeNamespace('partials.pagination')) }}
@endif
@endif