@extends('public.layout') @section('title', 'Blog') @section('content')

Blog

Artikel

Pengumuman, berita, dan tulisan dari organisasi Persegi.

@forelse($posts as $post)

// {{ $post->published_at->format('d M Y') }}

{{ $post->title }}

{{ ucfirst($post->category) }}

{{ $post->title }}

{{ strip_tags($post->content) }}

see more →

@empty

Belum ada artikel.

@endforelse
{{ $posts->links() }}
@endsection