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

Blog

Artikel, pengumuman, dan berita dari Persegi

@forelse($posts as $post)
{{ ucfirst($post->category) }} {{ $post->published_at->format('d M Y') }}

{{ $post->title }}

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

{{ $post->author->name }}
@empty

Belum ada artikel.

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