From 60ee2d131decd2133ef2dbdf54eb44923d03794c Mon Sep 17 00:00:00 2001 From: Juan Luis Baptiste Date: Mon, 9 Nov 2015 17:30:57 -0500 Subject: [PATCH] Added Colombian currency. --- database/seeds/PaymentLibrariesSeeder.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/seeds/PaymentLibrariesSeeder.php b/database/seeds/PaymentLibrariesSeeder.php index 3af56fa95c..b48d14689a 100644 --- a/database/seeds/PaymentLibrariesSeeder.php +++ b/database/seeds/PaymentLibrariesSeeder.php @@ -114,6 +114,7 @@ class PaymentLibrariesSeeder extends Seeder ['name' => 'Indonesian Rupiah', 'code' => 'IDR', 'symbol' => 'Rp', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'], ['name' => 'Mexican Peso', 'code' => 'MXN', 'symbol' => '$', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'], ['name' => 'Egyptian Pound', 'code' => 'EGP', 'symbol' => '£', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'], + ['name' => 'Colombian Peso', 'code' => 'COP', 'symbol' => '$', 'precision' => '2', 'thousand_separator' => '.', 'decimal_separator' => ','], ]; foreach ($currencies as $currency) {