@php $post = \App\Models\Blog::getPost($page); $blogs = \Statamic\Entries\Entry::query()->where('collection', 'blogs')->limit(3)->get(); @endphp

{{ $post->title }}

{{ \Carbon\Carbon::parse($post->updated_at)->translatedFormat('j F, Y') }}
{!! $post->content !!}
@if ($post->focus_content)
{!! $post->focus_content !!}
@endif @if ($post->content_after_focus_content)
{!! $post->content_after_focus_content !!}
@endif
مقالات اخري
@foreach ($blogs as $post) @livewire('blog-post-component', ['post_id' => $post->id], key('post_' . $post->id)) @endforeach