Add Croatian kuna to currency seeder

Signed-off-by: Luca Bognolo <git@bogny.eu>
This commit is contained in:
Luca Bognolo 2018-12-31 17:53:13 +01:00
parent aeab5f0333
commit 2a89d49ba7
No known key found for this signature in database
GPG Key ID: 99A80F6941A7F228

View File

@ -68,6 +68,7 @@ class TransactionCurrencySeeder extends Seeder
// 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];
$currencies[] = ['code' => 'HRK', 'name' => 'Croatian kuna', 'symbol' => 'kn', 'decimal_places' => 2];
foreach ($currencies as $currency) {
try {