add brazilian currency and translation

fix #257
This commit is contained in:
Antonio Spinelli
2016-04-28 14:40:59 -03:00
parent 8bcc319b7d
commit 568186828c
2 changed files with 2 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ class TransactionCurrencySeeder extends Seeder
TransactionCurrency::create(['code' => 'EUR', 'name' => 'Euro', 'symbol' => '€']);
TransactionCurrency::create(['code' => 'USD', 'name' => 'US Dollar', 'symbol' => '$']);
TransactionCurrency::create(['code' => 'HUF', 'name' => 'Hungarian forint', 'symbol' => 'Ft']);
TransactionCurrency::create(['code' => 'BRL', 'name' => 'Real', 'symbol' => 'R$']);
}
}