Skip to content

Commit

Permalink
Merge pull request #1848 from kriegalex/feature/swiss-franc
Browse files Browse the repository at this point in the history
Add swiss franc to currency seeder
  • Loading branch information
JC5 committed Nov 1, 2018
2 parents b17f2f5 + 81d70a5 commit bd0be97
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions database/seeds/TransactionCurrencySeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public function run()

// PLEASE ADD NEW CURRENCIES BELOW THIS LINE
$currencies[] = ['code' => 'ILS', 'name' => 'Israeli new shekel', 'symbol' => '₪', 'decimal_places' => 2];
$currencies[] = ['code' => 'CHF', 'name' => 'Swiss franc', 'symbol' => 'CHF', 'decimal_places' => 2];

foreach ($currencies as $currency) {
try {
Expand Down

0 comments on commit bd0be97

Please sign in to comment.