fixed typo

This commit is contained in:
Cüneyt Şentürk
2021-01-15 12:09:23 +03:00
parent e9bf2b2b77
commit 97e66ca049
6 changed files with 11 additions and 7 deletions

View File

@ -37,8 +37,9 @@ class Currencies extends Controller
$current = Currency::orderBy('code')->pluck('code')->toArray();
// Prepare codes
$codes = array();
$codes = [];
$money_currencies = MoneyCurrency::getCurrencies();
foreach ($money_currencies as $key => $item) {
$codes[$key] = $key;
}