Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveitaly committed Apr 24, 2021
1 parent 4fef94a commit fbeb35a
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 fbeb35a

Please sign in to comment.