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

{{$$module_name_singular->name}}

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

@php $title_text = __('Comments'); @endphp
@include('frontend.includes.messages')
@php $details_url = route("frontend.$module_name.show",[encode_id($$module_name_singular->id), $$module_name_singular->slug]); @endphp

{{$$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; @endphp
@php $post_details_url = route("frontend.posts.show",[encode_id($post->id), $post->slug]); @endphp {{$post->name}}

{{$post->name}}

{{$post->author_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