|
@@ -305,6 +305,15 @@
|
|
<a start show><i class="fa fa-edit"></i></a>
|
|
<a start show><i class="fa fa-edit"></i></a>
|
|
<form url="/api/client/setNextAppointment" class="mcp-theme-1">
|
|
<form url="/api/client/setNextAppointment" class="mcp-theme-1">
|
|
<input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
<input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="text-secondary text-sm">Pro</label>
|
|
|
|
+ <select name="proUid" class="form-control form-control-sm">
|
|
|
|
+ <option value=""> --select-- </option>
|
|
|
|
+ @foreach($pros as $iPro)
|
|
|
|
+ <option value="{{$iPro->uid}}" {{ $iPro->uid === $pro->uid ? 'selected' : '' }}>{{$iPro->displayName()}}</option>
|
|
|
|
+ @endforeach
|
|
|
|
+ </select>
|
|
|
|
+ </div>
|
|
<div class="mb-2">
|
|
<div class="mb-2">
|
|
<label class="text-secondary text-sm">Date</label>
|
|
<label class="text-secondary text-sm">Date</label>
|
|
<input type="date" name="date" min="{{ date('Y-m-d') }}" value="{{ $patient->next_mcp_appointment ? explode(" ", $patient->next_mcp_appointment)[0] : date('Y-m-d') }}" class="form-control form-control-sm">
|
|
<input type="date" name="date" min="{{ date('Y-m-d') }}" value="{{ $patient->next_mcp_appointment ? explode(" ", $patient->next_mcp_appointment)[0] : date('Y-m-d') }}" class="form-control form-control-sm">
|