|
@@ -913,7 +913,7 @@ WHERE measurement.label NOT IN ('SBP', 'DBP')
|
|
|
});
|
|
|
}
|
|
|
$patients = $query->orderBy('name_last', 'asc')->orderBy('name_first', 'asc')->get();
|
|
|
- $unmappedSMS = ClientSMS::where('client_id', null)->where('incoming_or_outgoing', 'INCOMING')->get();
|
|
|
+ $unmappedSMS = ClientSMS::where('client_id', null)->where('incoming_or_outgoing', 'INCOMING')->paginate(20);
|
|
|
return view('app/unmapped-sms', compact('unmappedSMS', 'patients'));
|
|
|
}
|
|
|
|