|
@@ -28,11 +28,11 @@ class PatientController extends Controller
|
|
|
|
|
|
public function claimsResolver(Request $request, Client $patient)
|
|
|
{
|
|
|
- $notes = $patient->notesAscending();
|
|
|
+ $notes = $patient->notesAscending;
|
|
|
$hcpSignedNotes = 0;
|
|
|
foreach($notes as $note){
|
|
|
if($note->is_signed_by_hcp){
|
|
|
- $hcpSignedNotes++;
|
|
|
+ $hcpSignedNotes += 1;
|
|
|
}
|
|
|
}
|
|
|
$data = [
|