|
@@ -0,0 +1,45 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace App\Http\Controllers;
|
|
|
+
|
|
|
+use App\Lib\Backend;
|
|
|
+use App\Models\Appointment;
|
|
|
+use App\Models\AppointmentConfirmationDecision;
|
|
|
+use App\Models\AppSession;
|
|
|
+use App\Models\CareMonth;
|
|
|
+use App\Models\ClientMemo;
|
|
|
+use App\Models\ClientProChange;
|
|
|
+use App\Models\ClientSMS;
|
|
|
+use App\Models\Facility;
|
|
|
+use App\Models\IncomingReport;
|
|
|
+use App\Models\MBPayer;
|
|
|
+use App\Models\ProProAccess;
|
|
|
+use App\Models\SupplyOrder;
|
|
|
+use App\Models\Ticket;
|
|
|
+use DateTime;
|
|
|
+
|
|
|
+use App\Models\Client;
|
|
|
+use App\Models\Bill;
|
|
|
+use App\Models\Measurement;
|
|
|
+use App\Models\Note;
|
|
|
+use App\Models\Pro;
|
|
|
+use App\Models\ProTransaction;
|
|
|
+use GuzzleHttp\Cookie\CookieJar;
|
|
|
+use Illuminate\Http\Request;
|
|
|
+use Illuminate\Support\Facades\Cookie;
|
|
|
+use Illuminate\Support\Facades\DB;
|
|
|
+use Illuminate\Support\Facades\Http;
|
|
|
+use App\Models\OutgoingEmailTemplate;
|
|
|
+
|
|
|
+class SupervisingPhysicianController extends Controller
|
|
|
+{
|
|
|
+
|
|
|
+ public function dashboard(Request $request){
|
|
|
+ $performer = $this->performer();
|
|
|
+ $pro = $performer->pro;
|
|
|
+ $performerProID = $performer->pro->id;
|
|
|
+
|
|
|
+ $milliseconds = strtotime(date('Y-m-d')) . '000'; //required by the calendar
|
|
|
+ return view('app.ps.dashboard', compact( 'milliseconds'));
|
|
|
+ }
|
|
|
+}
|