@extends('layouts.note_layout') @section('title', 'EndoCapture') @section('con-top') @endsection @section('style') @endsection @section('modal')
@endsection @section('content') @php $id = $_GET['id']; $note = DB::table('tb_casenote')->where('note_id',$id)->first(); $json = jsonDecode($note->note_casejson); $doctor = DB::table('users')->where('user_type','doctor')->get(); $nurse = DB::table('users')->where('user_type','nurse')->get(); // $procedure = Department::procedure(Auth::id()); $righttotreatment = DB::table('dd_righttotreatment')->get(); @endphp