|
@@ -63,6 +63,7 @@ class NoteController extends Controller
|
|
|
// other open supplyOrders as of today
|
|
|
$otherOpenSupplyOrders = SupplyOrder::where('client_id', $patient->id)
|
|
|
->where('is_cancelled', false)
|
|
|
+ ->where('note_id', '<>', $note->id)
|
|
|
->get();
|
|
|
|
|
|
return view('app.patient.note.dashboard', compact('patient', 'note',
|