Fix typo in function name

This commit is contained in:
blackpidgeon
2020-03-09 09:02:25 +01:00
committed by DK
parent 58a796c2b4
commit 3444cd8dd8
4 changed files with 6 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ class Category extends Model
return $this->transactions()->where('type', 'expense');
}
public function income_transacions()
public function income_transactions()
{
return $this->transactions()->where('type', 'income');
}