BOWEL PREPARATION :
@if(mevalue($json,['bowel','bowel_other']))
@php
$bowel = DB::table('bowel')->where('bowel_id','=',@$json->bowel)->first();
@endphp
@if(@$json->bowel!="" && @$json->bowel_other!="")
{{$bowel->bowel_name}}
({{@$json->bowel_other}})
@endif
@if(@$json->bowel!="" && @$json->bowel_other=="")
{{$bowel->bowel_name}}
@endif
@if(@$json->bowel=="" && @$json->bowel_other!="")
{{@$json->bowel_other}}
@endif
@if(@$json->bowel===null && @$json->bowel_other===null)
N/A
@endif
@endif
|