@extends('layouts.master')
@section('pageStyle')
@endsection
@section('content')
{{ $module_name }}
/ {{ ucfirst($page) }}
About
- Text : {{ $comment->comment }}
- Parent Comment :
{{ $comment->parent ? $comment->parent->comment : 'No Parent' }}
Creator Contacts
- Contact: {{ $comment->user->name }}
- Creator Email: {{ $comment->user->email }}
Replies
@if(count($comment->children) > 0 )
@foreach($comment->children as $child)
-
{{ $child->user->name }}:
{{ $child->comment }}
({{ @customDateFormat($child->created_at) }} - {{ @customTimeFormat($child->created_at) }})
@endforeach
@else
No Comment Listed
@endif
@endsection
@section('scripts')
@endsection