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)
{{ $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