From 15a00b3b73c8b4f4a4afda7c7767a122a3402a3a Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 23 Sep 2021 20:57:57 +1000 Subject: [PATCH] Adding currencies --- .../2021_09_23_100629_add_currencies.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/database/migrations/2021_09_23_100629_add_currencies.php b/database/migrations/2021_09_23_100629_add_currencies.php index 1648db78b1d0..9cb74a1af2e6 100644 --- a/database/migrations/2021_09_23_100629_add_currencies.php +++ b/database/migrations/2021_09_23_100629_add_currencies.php @@ -23,6 +23,19 @@ class AddCurrencies extends Migration */ public function down() { - // + + $currencies = [ + ['id' => 105, 'name' => 'Ethiopian Birr', 'code' => 'ETB', 'symbol' => '', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'], + + ]; + } } + + +// Gambia Dalasi (GMD) +// Paraguayan Guarani (PYG) +// Malawi Kwacha (MWK) +// Zimbabwean Dollar (ZWL) +// Cambodian Riel (KHR) +// Vanuatu Vatu (VUV) \ No newline at end of file