@extends('frontend.layouts.app') @section('title') @lang('Comments') @endsection @section('content')

@lang('Comments')

The list of Comments.

@php $title_text = __('Comments'); @endphp
@include('frontend.includes.messages')
@foreach ($$module_name as $$module_name_singular) @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}}

Continue Reading


Post: {{$$module_name_singular->post->name}}
@endforeach
{{$$module_name->links()}}
@endsection