@php $blogs = Statamic\Entries\Entry::query() ->where('collection', 'blogs') ->where('language',app()->getLocale()) ->limit($vars['limit']) ->get(['title','language', 'content', 'slug', 'feature_image','updated_at']); @endphp @foreach ($blogs as $post) @livewire('blog-post-component',['post_id'=>$post->id]) @endforeach