@extends('layouts.app') @section('title') {{ __('Edit Laboratory Report') }} @endsection @section('breadcrumb')

{{ __('Laboratory Reports') }}

@endsection @section('content') @can('view_comments')

Comments for

@csrf @can('comment')
@endcan
@foreach ($test->comments as $comment) @if ($comment->user->user_type == 'Clinical')
Avatar
{{ $comment->user->name }}
{{ $comment->comment }}
{{ date('M d, Y | h:i a', strtotime($comment->created_at)) }}
@endif @endforeach
@endcan @endsection @section('scripts') @endsection