Skip to content

Commit

Permalink
Add currency because why not.
Browse files Browse the repository at this point in the history
  • Loading branch information
JC5 committed Jun 15, 2024
1 parent 46b7807 commit e3eb550
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions database/seeders/TransactionCurrencySeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public function run(): void
$currencies[] = ['code' => 'PLN', 'name' => 'Polish złoty', 'symbol' => '', 'decimal_places' => 2];
$currencies[] = ['code' => 'TRY', 'name' => 'Turkish lira', 'symbol' => '', 'decimal_places' => 2];
$currencies[] = ['code' => 'DKK', 'name' => 'Dansk krone', 'symbol' => 'kr.', 'decimal_places' => 2];
$currencies[] = ['code' => 'RON', 'name' => 'Romanian leu', 'symbol' => 'lei', 'decimal_places' => 2];

// american currencies
$currencies[] = ['code' => 'USD', 'name' => 'US Dollar', 'symbol' => '$', 'decimal_places' => 2];
Expand Down

0 comments on commit e3eb550

Please sign in to comment.