@extends('layouts.master') @section('title','Comment') @section('parentPageTitle', 'All Ticket') @section('content')

{{$comment->user->name}}

{{$comment->comment}}
{{date('H:i',strtotime($comment->created_at))}}
@foreach(\App\Models\CourseComment::where('replay',$comment->id)->get() as $item)

{{$item->user->name}}

{{$item->comment}}
{{date('H:i',strtotime($item->created_at))}}
@endforeach
@csrf
@endsection