@extends('layouts.app') @section('content')
{{-- Background Gradient --}}
{{-- Decorative Blobs --}}

Artikel & Blog Terbaru

{{-- Grid Blog --}}
@foreach($posts as $post)
{{-- Thumbnail --}}
{{ $post['title'] }}
{{ $post['category']['name'] ?? 'Umum' }}
{{-- Konten --}}
{{-- Judul --}}

{{ $post['title'] }}

{{-- Tanggal Publish --}}

{{ \Carbon\Carbon::parse($post['created_at'])->translatedFormat('d F Y') }}

{{-- Excerpt --}}

{{ \Illuminate\Support\Str::limit($post['excerpt'], 150) }}

{{-- Link --}} Baca Selengkapnya →
@endforeach
@endsection