Merge pull request #323 from Mortalife/master

Adding GBP to Seed
This commit is contained in:
James Cole 2016-09-22 07:58:21 +02:00 committed by GitHub
commit 258e87e127

View File

@ -25,6 +25,7 @@ class TransactionCurrencySeeder extends Seeder
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$']);
TransactionCurrency::create(['code' => 'GBP', 'name' => 'British Pound', 'symbol' => '£']);
}
}