@extends('layouts.master')
@section('pageStyle')
@endsection
@section('content')
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