@extends('layouts.frontend') @section('title', $announcement->title . ' - TPK') @section('content')
{{ $announcement->published_at->format('l, d F Y') }}
@if($announcement->attachment) Download Lampiran @endif

{{ $announcement->title }}

{{ $announcement->user->name }}
{!! $announcement->content !!}
@if($relatedAnnouncements->count() > 0)

Pengumuman Lainnya

@foreach($relatedAnnouncements as $related)
{{ $related->published_at->format('d M Y') }}

{{ $related->title }}

Baca selengkapnya →
@endforeach
@endif @endsection