@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 }}
Sub Comments
    @if(count($comment->children) > 0 ) @foreach($comment->children as $child)
  • {{ $child->user->name }}: {{ $child->comment }}
  • @endforeach @else

    No Comment Listed

    @endif
@endsection @section('scripts') @endsection