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

{{ __("Comments") }}

{{$$module_name_singular->name}}

@include('frontend.includes.messages')

{{$$module_name_singular->name}}

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

{{$$module_name_singular->created_at_formatted}}


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

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


@php $post = $$module_name_singular->post; $post_detail_url = route("frontend.posts.show",[encode_id($post->id), $post->slug]); @endphp @if($post->created_by_alias)
Author profile image
{{ $post->created_by_alias }}
@else @endif

{{$post->intro}}

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

Other Comments of the this post


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

@endforeach
@endsection