|
@@ -11,8 +11,7 @@ class PatientController extends Controller
|
|
|
public function dashboard(Request $request, Client $patient )
|
|
|
{
|
|
|
$mcpPros = Pro::where('is_enrolled_as_mcp', true)->get();
|
|
|
- $pros = Pro::all();
|
|
|
- return view('app.patient.dashboard', compact('patient','pros'));
|
|
|
+ return view('app.patient.dashboard', compact('patient'));
|
|
|
}
|
|
|
|
|
|
public function carePlan(Request $request, Client $patient )
|
|
@@ -62,8 +61,7 @@ class PatientController extends Controller
|
|
|
|
|
|
public function notes(Request $request, Client $patient )
|
|
|
{
|
|
|
- $pros = Pro::all();
|
|
|
- return view('app.patient.notes', compact('patient','pros'));
|
|
|
+ return view('app.patient.notes', compact('patient'));
|
|
|
}
|
|
|
|
|
|
public function flowSheets(Request $request, Client $patient )
|