|
@@ -0,0 +1,108 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace App\Http\Controllers;
|
|
|
+
|
|
|
+use App\Models\Appointment;
|
|
|
+use App\Models\BDTDevice;
|
|
|
+use App\Models\CareMonth;
|
|
|
+use App\Models\Client;
|
|
|
+use App\Models\ClientBDTDevice;
|
|
|
+use App\Models\ClientInfoLine;
|
|
|
+use App\Models\Erx;
|
|
|
+use App\Models\Facility;
|
|
|
+use App\Models\Handout;
|
|
|
+use App\Models\IncomingReport;
|
|
|
+use App\Models\MBClaim;
|
|
|
+use App\Models\MBPayer;
|
|
|
+use App\Models\Note;
|
|
|
+use App\Models\NoteTemplate;
|
|
|
+use App\Models\Pro;
|
|
|
+use App\Models\Product;
|
|
|
+use App\Models\ProProAccess;
|
|
|
+use App\Models\SectionTemplate;
|
|
|
+use App\Models\Shipment;
|
|
|
+use App\Models\SupplyOrder;
|
|
|
+use App\Models\Ticket;
|
|
|
+use Illuminate\Http\Request;
|
|
|
+use Illuminate\Support\Facades\DB;
|
|
|
+use Illuminate\Support\Facades\File;
|
|
|
+
|
|
|
+use Illuminate\Support\Facades\Http;
|
|
|
+use PDF;
|
|
|
+
|
|
|
+class McpController extends Controller
|
|
|
+{
|
|
|
+
|
|
|
+ public function patients(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.patients', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function new_patients_awaiting_visit(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.new_patients_awaiting_visit', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function notes_pending_signature(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.notes_pending_signature', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function notes_pending_billing(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.notes_pending_billing', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function reports_pending_signature(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.reports_pending_signature', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function patients_without_appointments(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.patients_without_appointments', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function patients_overdue(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.patients_overdue', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function cancelled_appointments_pending_review(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.cancelled_appointments_pending_review', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function cancelled_bills_pending_review(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.cancelled_bills_pending_review', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function cancelled_supply_orders_pending_review(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.cancelled_supply_orders_pending_review', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function erx_and_orders_pending_signature(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.erx_and_orders_pending_signature', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function supply_orders_pending_signature(Request $request)
|
|
|
+ {
|
|
|
+ $data = [];
|
|
|
+ return view('app.view.mcp.supply_orders_pending_signature', $data);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|