@extends('frontend.layouts.app') @section('title') {{$$module_name_singular->name}} - {{ __("Comments") }} @endsection @section('content')

{{ __("Comments") }}

{{$$module_name_singular->name}}

@include('frontend.includes.messages')

Post of {{$$module_name_singular->name}}

{!! $$module_name_singular->comment !!}

{{$$module_name_singular->published_at_formatted}}


{{ __('Post') }}: {{$$module_name_singular->post->name}}

Post of {{$$module_name_singular->name}}

@php $post = $$module_name_singular->post; $post_details_url = route("frontend.posts.show",[encode_id($post->id), $post->slug]); @endphp
{{$post->name}}

{{$post->name}}

{{$post->intro}}

{{$post->category_name}}

@foreach ($post->tags as $tag) {{$tag->name}} @endforeach

Total {{$post->comments->count()}} comments

{{$post->published_at_formatted}}

Other Comments of the this post


@foreach ($post->comments as $comment)
{{$comment->name}}
{!! $comment->comment !!}
-- {{$comment->user_name}}

@endforeach
@endsection