@extends('layouts.app') @section('title', $post->title) @section('content')
{{ $post->title }}
{{ $post->category->name ?? 'Update' }}

{{ $post->title }}

{{ $post->user->name ?? 'Admin' }} {{ $post->created_at->format('M d, Y') }} {{ $post->views }} Views
Bagikan:
{!! $post->content !!}
@if($post->tags->count() > 0)
@foreach($post->tags as $tag) #{{ $tag->name }} @endforeach
@endif @php $midAd = $sidebar['ads']->where('position', 'tengah')->first(); @endphp @if($midAd)
Iklan Tengah

Informasi Sponsor

@endif

KOMENTAR ({{ $comments->count() }})

@forelse($comments as $comment)

{{ $comment->name }}

{{ $comment->created_at->diffForHumans() }}

{{ $comment->content }}

@empty
Belum ada komentar. Jadilah yang pertama!
@endforelse
@if($related->count() > 0)

Berita Terkait

@foreach($related as $rel) @endforeach
@endif @endsection