@php $block="display:block"; $none="display:none"; @endphp

Assessment

{!! isset($note['assessment']) ? nl2br($note['assessment']) : '-' !!}

Treatment

{!! (isset($note['treatment']) ? nl2br($note['treatment']) : '-') !!}

Recommendations

{!! isset($note['recommendations']) ? nl2br($note['recommendations'] ) : '-' !!}

@php $practitionerNoteFile=App\Models\PractitionerNoteFile::where('note_id', $note['id'])->groupBy('file')->get(); @endphp @if(count($practitionerNoteFile)) @foreach ($practitionerNoteFile as $f)
{{$f->file}}
@endforeach @endif