mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-11 00:03:12 -07:00
5 lines
190 B
PHP
5 lines
190 B
PHP
var accountInfo = [];
|
|
@foreach($accounts as $id => $account)
|
|
accountInfo[{{ $id }}] = {preferredCurrency: "{{ $account->preferredCurrency }}", name: "{{ $account->name }}"};
|
|
@endforeach
|