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

{{$$module_name_singular->name}}

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

{!!$$module_name_singular->content!!}

Category: {{$$module_name_singular->category_name}}

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

Share:
@php $title_text = $$module_name_singular->name; @endphp
@if($$module_name_singular->comments->count()) {{$$module_name_singular->comments->count()}} @endif @lang('Comments')
@auth

Your comment will be in the moderation queue. If your comment will be approved, you will get notification and it will be displayed here.
Please submit once & wait till published.

{{ html()->form('POST', route("frontend.comments.store"))->class('form')->open() }}
{{ html()->label($field_lable, $field_name) }} {!! fielf_required($required) !!} {{ html()->text($field_name)->placeholder($field_placeholder)->class('form-control')->attributes(["$required"]) }}
{{ html()->label($field_lable, $field_name) }} {!! fielf_required($required) !!} {{ html()->textarea($field_name)->placeholder($field_placeholder)->class('form-control')->attributes(["$required", "rows"=>5]) }}