@extends('layouts.blog') @section('meta_title', 'Blog') @section('meta_description', 'Artikel terbaru, tutorial, dan berita terkini') @section('content')
{{-- Main Content --}}

Latest Posts

@forelse($posts as $post)
@if($post->featured_image_url) {{ $post->title }} @else {{ $post->title }} @endif
@if($post->category) {{ $post->category->name }} @endif

{{ $post->title }}

{{ $post->excerpt }}

{{ $post->published_at->format('d M Y') }} {{ number_format($post->views_count) }}
@empty
Belum ada post yang dipublish.
@endforelse
{{-- Pagination --}}
{{ $posts->links('vendor.pagination.blog') }}
{{-- Sidebar --}}
{{-- Popular Posts --}} {{-- Categories --}} {{-- Tags --}}
@endsection