Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveitaly committed May 12, 2021
1 parent fc61bfd commit 67f7757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Models/Contact/Contact.php
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ public function scopeNotes($query, int $accountId = null, string $needle)
return $query->orWhereHas('notes', function ($query) use ($accountId, $needle) {
return $query->where([
['account_id', $accountId],
['body', 'like', "%$needle%"]
['body', 'like', "%$needle%"],
]);
});
}
Expand Down

0 comments on commit 67f7757

Please sign in to comment.