Skip to content

Commit

Permalink
Fix: Fix closing balance end date
Browse files Browse the repository at this point in the history
  • Loading branch information
ekmungai committed Mar 31, 2021
1 parent d59f570 commit 7bfa78a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/Account.php
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ public function balances()
*/
public function attributes()
{
$this->attributes['closingBalance'] = $this->closingBalance(date('Y-m-d'));
$this->attributes['closingBalance'] = $this->closingBalance();
return (object) $this->attributes;
}

Expand Down

0 comments on commit 7bfa78a

Please sign in to comment.