@foreach ($posts as $item)
@include('frontend.templates.components.posts-card', [
'title' => $item->title,
'image' => getMediaImg($item->media, '800x800', htmlspecialchars($item->title)),
'link' => lang_url($item->lang_uri),
'date' => format_date($item->date),
])
@endforeach