|
@@ -78,6 +78,32 @@ class PatientController extends Controller
|
|
return view('app.patient.action-items-other', compact('patient', 'facilities', 'filter', 'allPros'));
|
|
return view('app.patient.action-items-other', compact('patient', 'facilities', 'filter', 'allPros'));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public function actionItemsErxSingle(Request $request, Client $patient, $ticket) {
|
|
|
|
+ $allPros = Pro::all();
|
|
|
|
+ $facilities = Facility::where('is_active', true)->get();
|
|
|
|
+ return view('app.patient.action-items-erx-single', compact('patient', 'facilities', 'allPros', 'ticket'));
|
|
|
|
+ }
|
|
|
|
+ public function actionItemsLabSingle(Request $request, Client $patient, $ticket) {
|
|
|
|
+ $allPros = Pro::all();
|
|
|
|
+ $facilities = Facility::where('is_active', true)->get();
|
|
|
|
+ return view('app.patient.action-items-lab-single', compact('patient', 'facilities', 'allPros', 'ticket'));
|
|
|
|
+ }
|
|
|
|
+ public function actionItemsImagingSingle(Request $request, Client $patient, $ticket) {
|
|
|
|
+ $allPros = Pro::all();
|
|
|
|
+ $facilities = Facility::where('is_active', true)->get();
|
|
|
|
+ return view('app.patient.action-items-imaging-single', compact('patient', 'facilities', 'allPros', 'ticket'));
|
|
|
|
+ }
|
|
|
|
+ public function actionItemsEquipmentSingle(Request $request, Client $patient, $ticket) {
|
|
|
|
+ $allPros = Pro::all();
|
|
|
|
+ $facilities = Facility::where('is_active', true)->get();
|
|
|
|
+ return view('app.patient.action-items-equipment-single', compact('patient', 'facilities', 'allPros', 'ticket'));
|
|
|
|
+ }
|
|
|
|
+ public function actionItemsOtherSingle(Request $request, Client $patient, $ticket) {
|
|
|
|
+ $allPros = Pro::all();
|
|
|
|
+ $facilities = Facility::where('is_active', true)->get();
|
|
|
|
+ return view('app.patient.action-items-other-single', compact('patient', 'facilities', 'allPros', 'ticket'));
|
|
|
|
+ }
|
|
|
|
+
|
|
public function intake(Request $request, Client $patient )
|
|
public function intake(Request $request, Client $patient )
|
|
{
|
|
{
|
|
$files = File::allFiles(resource_path('views/app/intake-templates'));
|
|
$files = File::allFiles(resource_path('views/app/intake-templates'));
|