|
@@ -201,6 +201,91 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
+ <hr class="m-negator-3 my-3">
|
|
|
+
|
|
|
+ <div class="d-flex align-items-center mt-3 mb-2">
|
|
|
+ <div class="font-weight-bold">Associated Pros</div>
|
|
|
+ </div>
|
|
|
+ <div class="pl-3">
|
|
|
+
|
|
|
+ <div class="mb-1">
|
|
|
+ RMM: <b>{{ $patient->rmm->name_display ?? ''}}</b>
|
|
|
+ @if($pro->pro_type === 'ADMIN')
|
|
|
+ <div moe wide>
|
|
|
+ <a start show><i class="fa fa-edit"></i></a>
|
|
|
+ <form url="/api/client/putRmmPro" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="mb-1 text-secondary text-sm">RMM Pro</label>
|
|
|
+
|
|
|
+ <select class="form-control form-control-sm" name="rmmProUid">
|
|
|
+ <option value="">--select--</option>
|
|
|
+ @foreach($pros as $rmmPro)
|
|
|
+ <option value="{{$rmmPro->uid}}">{{$rmmPro->name_display}}</option>
|
|
|
+ @endforeach
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ <div class="mb-1">
|
|
|
+ RME: <b>{{ $patient->rme->name_display ?? '' }}</b>
|
|
|
+ @if($pro->pro_type === 'ADMIN')
|
|
|
+ <div moe wide>
|
|
|
+ <a start show><i class="fa fa-edit"></i></a>
|
|
|
+ <form url="/api/client/putRmePro" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="mb-1 text-secondary text-sm">RME Pro</label>
|
|
|
+ <select class="form-control form-control-sm" name="rmeProUid">
|
|
|
+ <option value="">--select--</option>
|
|
|
+ @foreach($pros as $rmePro)
|
|
|
+ <option value="{{$rmePro->uid}}">{{$rmePro->name_display}}</option>
|
|
|
+ @endforeach
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="mb-1">
|
|
|
+ RMS: <b>{{ $patient->rms->name_display ??'' }}</b>
|
|
|
+ @if($pro->pro_type === 'ADMIN')
|
|
|
+ <div moe wide>
|
|
|
+ <a start show><i class="fa fa-edit"></i></a>
|
|
|
+ <form url="/api/client/putRmsPro" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="mb-1 text-secondary text-sm">RMS Pro</label>
|
|
|
+
|
|
|
+ <select class="form-control form-control-sm" name="rmsProUid">
|
|
|
+ <option value="">--select--</option>
|
|
|
+ @foreach($pros as $rmsPro)
|
|
|
+ <option value="{{$rmsPro->uid}}">{{$rmsPro->name_display}}</option>
|
|
|
+ @endforeach
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
</div>
|
|
|
<div class="col-6 border-left">
|
|
|
|