@extends('layouts.app') @section('title', $post->title . ' | Berita') @section('content')

{{ $post->title }}

{{ $post->author->name }}
{{ $post->reading_time }} min read
{{ $post->title }}
{!! $post->content !!}
Tags Terkait: @if($post->tags) @foreach(explode(',', $post->tags) as $tag) #{{ trim($tag) }} @endforeach @endif #{{ $post->category->name }}

Bagikan Artikel

Bantu sebarkan informasi ini

@php $shareUrl = url()->current(); $shareTitle = urlencode($post->title); $shareText = urlencode("Baca artikel menarik: {$post->title}"); @endphp
@endsection