@extends('layouts.backend.app') @section('content')

{{ __('Reply Comment') }}

{{ __('Name:') }} {{ $comments->name }}

{{ __('Email:') }} {{ $comments->email }}

{{ $comments->comment }}
@foreach($comments->reply as $row)
{{ $row->comment }}
@endforeach
@csrf
@endsection @section('script') @endsection