mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fixed bug in sumOfEverything() function
This commit is contained in:
@@ -400,7 +400,7 @@ class AccountRepository implements AccountRepositoryInterface
|
|||||||
*/
|
*/
|
||||||
public function sumOfEverything(): string
|
public function sumOfEverything(): string
|
||||||
{
|
{
|
||||||
return Auth::user()->transactions()->sum('amount');
|
return strval(Auth::user()->transactions()->sum('amount'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user