@extends('layouts.app') @section('title', $post->title . ' | Berita') {{-- ================= SEO & SOCIAL SHARE ================= --}} @section('og_title', $post->title) @section('og_description', Str::limit( trim(strip_tags($post->content)), 150 ) ) @section('og_image', $post->thumbnail ? asset('storage/'.$post->thumbnail) : asset('images/logo.jpg') ) @section('content')

{{ $post->title }}

{{ $post->author->name }}
{{ $post->reading_time }} min read
{{ $post->title }}
{!! $post->content !!}
{{-- GALERI TERKAIT BERITA --}} @if($post->gallery && is_array($post->gallery->images))

Dokumentasi Kegiatan

@foreach(collect($post->gallery->images)->take(10) as $image) {{ $post->title }} @endforeach
@endif
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