@php
$json = jsonDecode(@$case->case_json);
@endphp
HN :
{{$case->case_hn}}
Name :
{{@$json->patientname}}
Current :
{{@$json->procedurename}}
Endoscopist :
{{@$json->doctorname}}
@php
$patient_today = DB::table('tb_case')
->where("case_status","!=","90")
->whereDate("case_dateappointment",date("Y-m-d"))
->where("case_hn",$case->case_hn)
->where("case_procedurecode","!=",@$case->case_procedurecode)
->get();
@endphp