|
@@ -414,7 +414,7 @@ class PatientController extends Controller
|
|
|
|
|
|
public function careMonths(Request $request, Client $patient )
|
|
|
{
|
|
|
- $careMonths = CareMonth::where('client_id', $patient->id)->orderBy('start_date', 'desc')->get();
|
|
|
+ $careMonths = CareMonth::where('client_id', $patient->id)->with('rmBill', 'mcp', 'rmmPro', 'rmePro', 'cmReasons', 'claims')->orderBy('start_date', 'desc')->get();
|
|
|
$notes = Note::where('is_cancelled', false)->get();
|
|
|
return view('app.patient.care-months', compact('patient', 'careMonths', 'notes'));
|
|
|
}
|