@extends('theme::layout')
@section('title', $post->title)
@section('meta_description', Str::limit(strip_tags($post->description), 160))
@section('content')
{{-- Back link --}}
← Back to Blog
{{-- Post Header --}}
{{ \Carbon\Carbon::parse($post->post_created_at)->format('d M Y') }}
@if($post->category)
{{ $post->category->name }}
@endif
{{ $post->title }}
{{-- Post Body --}}
{!! $post->description !!}
{{-- Tags --}}
@if($post->tags->count())
@endif
{{-- Post Like --}}
{{-- Comments Section --}}
{{-- end #comments --}}
@endsection
@push('scripts')
@endpush
{{ $comments->total() }} {{ Str::plural('Comment', $comments->total()) }}
{{-- Success flash --}} @if(session('comment_success')){{ $comment->comments }}
{{-- Comment like --}} @php $commentLiked = in_array($comment->id, $likedComments); @endphpNo comments yet. Be the first to leave one!
@endif {{-- Add Comment Form --}}Leave a Comment
@auth @if($errors->any()){{ $error }}
@endforeachCommenting as {{ $authName }}
@elseYou need to be logged in to leave a comment.