芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/acsolutionbd.com/main/database/seeders/CurrencySeeder.php
truncate(); $currencies = [ [ 'title' => 'USD', 'symbol' => '$', 'is_prefix_symbol' => true, 'order' => 0, 'decimals' => 2, 'is_default' => 1, 'exchange_rate' => 1, ], [ 'title' => 'EUR', 'symbol' => '€', 'is_prefix_symbol' => false, 'order' => 1, 'decimals' => 2, 'is_default' => 0, 'exchange_rate' => 0.84, ], [ 'title' => 'VND', 'symbol' => '₫', 'is_prefix_symbol' => false, 'order' => 2, 'decimals' => 0, 'is_default' => 0, 'exchange_rate' => 23203, ], ]; foreach ($currencies as $currency) { Currency::query()->create($currency); } } }