@php
/*
POST-DIAGNOSIS :
@if(@$json->prediagnostic!="" && @$json->postdiagnostic_cysto!="")
@php
$prediag = jsonDecode(@$json->prediagnostic);
@endphp
@foreach($prediag as $hv)
{{$hv}},
@endforeach
{{@$json->postdiagnostic_cysto}}
@endif
@if(@$json->prediagnostic!="" && @$json->postdiagnostic_cysto=="")
@php
$prediag = jsonDecode(@$json->prediagnostic);
@endphp
@foreach($prediag as $hv)
{{$hv}},
@endforeach
@endif
@if(@$json->prediagnostic=="" && @$json->postdiagnostic_cysto!="")
{{@$json->postdiagnostic_cysto}}
@endif
@if(@$json->prediagnostic=="" && @$json->postdiagnostic_cysto=="")
None
@endif
|
*/
@endphp