@extends('layouts.default') @section('content')

{{ $post->title }}

@if ($post->image) @endif
    @php $tags = explode(',', $post->tags); @endphp @foreach ($tags as $tag)
  • {{ $tag }}
  • @endforeach

{{ $post->title }}

  • Kina Bolu
  • {{ \App\Helpers\FormatDate::formatTimestamp($post->created_at) }}
{!! $post->content !!}
@endsection @push('script') @endpush