|
@@ -34,8 +34,6 @@ class NoteController extends Controller
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- $allyPros = Pro::all(); //TODO: paginate, use select2
|
|
|
-
|
|
|
// load tickets created on note->effective_date for patient
|
|
|
$ticketsOnNote = Ticket::where('client_id', $patient->id)
|
|
|
->where('is_entry_error', false)
|
|
@@ -63,7 +61,7 @@ class NoteController extends Controller
|
|
|
->get();
|
|
|
|
|
|
return view('app.patient.note.dashboard', compact('patient', 'note',
|
|
|
- 'allyPros', 'allSections',
|
|
|
+ 'allSections',
|
|
|
'ticketsOnNote', 'otherOpenTickets',
|
|
|
'supplyOrdersOnNote', 'otherOpenSupplyOrders'));
|
|
|
}
|