Skip to content

Commit

Permalink
Add swiss franc to currency seeder
Browse files Browse the repository at this point in the history
  • Loading branch information
kriegalex committed Nov 1, 2018
1 parent b17f2f5 commit 81d70a5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions database/seeds/TransactionCurrencySeeder.php
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 81d70a5

Please sign in to comment.