123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- <?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\Facility;
- use App\Models\Handout;
- use App\Models\NoteTemplate;
- use App\Models\Pro;
- use App\Models\Program;
- use App\Models\SectionTemplate;
- use App\Models\Ticket;
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\File;
- class PatientController extends Controller
- {
- public function dashboard(Request $request, Client $patient )
- {
- $mcpPros = Pro::where('is_enrolled_as_mcp', true)->get();
- $facilities = Facility::where('is_active', true)->get();
- $devices = BDTDevice::where('is_active', true)->orderBy('imei', 'asc')->get();
- $devices = $devices->filter(function ($record) {
- $matching = ClientBDTDevice::where('device_id', $record->id)->get();
- return count($matching) === 0;
- });
- $dxInfoLines = ClientInfoLine::where('client_id', $patient->id)
- ->where('category', 'dx')
- ->where('is_removed', false)
- ->orderBy('content_text', 'asc')
- ->get();
- return view('app.patient.dashboard',
- compact('patient', 'facilities', 'devices', 'dxInfoLines'));
- }
- public function actionItems(Request $request, Client $patient )
- {
- $facilities = Facility::where('is_active', true)->get();
- return view('app.patient.action-items', compact('patient', 'facilities'));
- }
- public function actionItemsErx(Request $request, Client $patient, $filter = 'open')
- {
- $allPros = Pro::all();
- $facilities = Facility::where('is_active', true)->get();
- return view('app.patient.action-items-erx', compact('patient', 'facilities', 'filter', 'allPros'));
- }
- public function actionItemsLab(Request $request, Client $patient, $filter = 'open')
- {
- $allPros = Pro::all();
- $facilities = Facility::where('is_active', true)->get();
- return view('app.patient.action-items-lab', compact('patient', 'facilities', 'filter', 'allPros'));
- }
- public function actionItemsImaging(Request $request, Client $patient, $filter = 'open')
- {
- $allPros = Pro::all();
- $facilities = Facility::where('is_active', true)->get();
- return view('app.patient.action-items-imaging', compact('patient', 'facilities', 'filter', 'allPros'));
- }
- public function actionItemsEquipment(Request $request, Client $patient, $filter = 'open')
- {
- $allPros = Pro::all();
- $facilities = Facility::where('is_active', true)->get();
- return view('app.patient.action-items-equipment', compact('patient', 'facilities', 'filter', 'allPros'));
- }
- public function actionItemsOther(Request $request, Client $patient, $filter = 'open')
- {
- $allPros = Pro::all();
- $facilities = Facility::where('is_active', true)->get();
- return view('app.patient.action-items-other', compact('patient', 'facilities', 'filter', 'allPros'));
- }
- public function actionItemsErxSingle(Request $request, Client $patient, Ticket $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 $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 $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 $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 $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 )
- {
- $files = File::allFiles(resource_path('views/app/intake-templates'));
- $templates = [];
- foreach ($files as $file) {
- $templates[] = str_replace(".blade.php", "", $file->getFilename());
- }
- return view('app.patient.intake', compact('patient', 'templates'));
- }
- public function carePlan(Request $request, Client $patient )
- {
- return view('app.patient.care-plan', compact('patient'));
- }
- public function medications(Request $request, Client $patient )
- {
- $infoLines = ClientInfoLine::where('client_id', $patient->id)
- ->where('category', 'rx')
- ->where('is_removed', false)
- ->orderBy('content_text', 'asc')
- ->get();
- return view('app.patient.medications', compact('patient', 'infoLines'));
- }
- public function dxAndFocusAreas(Request $request, Client $patient )
- {
- $dxInfoLines = ClientInfoLine::where('client_id', $patient->id)
- ->where('category', 'dx')
- ->where('is_removed', false)
- ->orderBy('content_text', 'asc')
- ->get();
- return view('app.patient.dx-and-focus-areas', compact('patient', 'dxInfoLines'));
- }
- public function careTeam(Request $request, Client $patient )
- {
- $infoLines = ClientInfoLine::where('client_id', $patient->id)
- ->where('category', 'care_team')
- ->where('is_removed', false)
- ->get();
- return view('app.patient.care-team', compact('patient', 'infoLines'));
- }
- public function devices(Request $request, Client $patient )
- {
- $devices = BDTDevice::where('is_active', true)->get();
- $devices = $devices->filter(function ($record) {
- $matching = ClientBDTDevice::where('device_id', $record->id)->get();
- return count($matching) === 0;
- });
- return view('app.patient.devices', compact('patient', 'devices'));
- }
- public function measurements(Request $request, Client $patient )
- {
- return view('app.patient.measurements', compact('patient'));
- }
- public function labsAndStudies(Request $request, Client $patient )
- {
- return view('app.patient.labs-and-studies', compact('patient'));
- }
- public function history(Request $request, Client $patient )
- {
- $infoLines = ClientInfoLine::where('client_id', $patient->id)
- ->where('category', 'LIKE', 'history_%')
- ->where('is_removed', false)
- ->get();
- return view('app.patient.history', compact('patient', 'infoLines'));
- }
- public function memos(Request $request, Client $patient )
- {
- return view('app.patient.memos', compact('patient'));
- }
- public function sms(Request $request, Client $patient )
- {
- return view('app.patient.sms', compact('patient'));
- }
- public function smsNumbers(Request $request, Client $patient )
- {
- return view('app.patient.sms-numbers', compact('patient'));
- }
- public function immunizations(Request $request, Client $patient )
- {
- return view('app.patient.immunizations', compact('patient'));
- }
- public function allergies(Request $request, Client $patient )
- {
- $infoLines = ClientInfoLine::where('client_id', $patient->id)
- ->where('category', 'allergy')
- ->where('is_removed', false)
- ->get();
- return view('app.patient.allergies', compact('patient', 'infoLines'));
- }
- public function notes(Request $request, Client $patient, $filter = 'active')
- {
- $pros = $this->pros;
- return view('app.patient.notes', compact('patient','pros', 'filter'));
- }
- public function sections(Request $request, Client $patient )
- {
- $pros = $this->pros;
- $sections = $patient->sections;
- $allSections = SectionTemplate::where('is_active', true)->get();
- foreach ($allSections as $section) {
- $section->used = false;
- foreach ($sections as $section) {
- if ($section->sectionTemplate->id === $section->id) {
- $section->used = true;
- $section->section_uid = $section->uid;
- break;
- }
- }
- }
- return view('app.patient.sections', compact('patient', 'pros', 'allSections'));
- }
- public function handouts(Request $request, Client $patient )
- {
- $handouts = Handout::where('is_active', true)->get();
- return view('app.patient.handouts', compact('patient', 'handouts'));
- }
- public function flowSheets(Request $request, Client $patient )
- {
- return view('app.patient.flowsheets', compact('patient'));
- }
- public function settings(Request $request, Client $patient )
- {
- return view('app.patient.settings', compact('patient'));
- }
- public function pros(Request $request, Client $patient )
- {
- return view('app.patient.pros', compact('patient'));
- }
- public function account(Request $request, Client $patient )
- {
- return view('app.patient.account', compact('patient'));
- }
- public function careChecklist(Request $request, Client $patient )
- {
- return view('app.patient.care-checklist', compact('patient'));
- }
- public function documents(Request $request, Client $patient )
- {
- return view('app.patient.documents', compact('patient'));
- }
- public function education(Request $request, Client $patient )
- {
- return view('app.patient.education', compact('patient'));
- }
- public function messaging(Request $request, Client $patient )
- {
- return view('app.patient.messaging', compact('patient'));
- }
- public function duplicate(Request $request, Client $patient )
- {
- return view('app.patient.duplicate', compact('patient'));
- }
- public function careMonths(Request $request, Client $patient )
- {
- $careMonths = CareMonth::where('client_id', $patient->id)->orderBy('start_date', 'desc')->get();
- return view('app.patient.care-months', compact('patient', 'careMonths'));
- }
- public function presence(Request $request, Client $patient )
- {
- return json_encode([
- "online" => $patient->is_online
- ]);
- }
- public function embedSection(Request $request, Client $patient, $section, $selectable) {
- return view('app.patient.partials.' . $section, compact('patient', 'selectable'));
- }
- public function calendar(Request $request, Client $patient, Appointment $currentAppointment) {
- return view('app.patient.appointment-calendar', compact('patient', 'currentAppointment'));
- }
- public function programs(Request $request, Client $patient, $filter = '') {
- $pros = $this->pros;
- return view('app.patient.programs', compact('patient', 'pros', 'filter'));
- }
- }
|