@extends('portal.user.layouts.app') @section('content')
@foreach($comments as $comment)
{{$comment->sender->name}}
{{$comment->created_at->diffForHumans()}}
{{-- User--}}

{!! $comment->comment !!}

@endforeach @if($inspection->is_verified !== 1)
@csrf
@endif
@endsection @section('script') @endsection