Adding GBP to Seed

This commit is contained in:
Matthew Peck 2016-09-21 20:45:36 +01:00
parent 70bb85a75b
commit 3ec8efcfc1

View File

@ -17,6 +17,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' => '£']);
}
}