⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
dalily.dev-unit.com
/
database
/
seeders
/
View File Name :
CurrencySeeder.php
<?php namespace Database\Seeders; use App\Models\Currency; use Illuminate\Database\Seeder; use Illuminate\Support\Facades\DB; class CurrencySeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { $entries = [ [ 'code' => 'AED', 'name' => 'United Arab Emirates Dirham', 'symbol' => 'د.إ', 'html_entities' => 'د.إ', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'AFN', 'name' => 'Afghanistan Afghani', 'symbol' => '؋', 'html_entities' => 'Af', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'ALL', 'name' => 'Albania Lek', 'symbol' => 'Lek', 'html_entities' => 'Lek', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'AMD', 'name' => 'Armenia Dram', 'symbol' => null, 'html_entities' => '', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'ANG', 'name' => 'Netherlands Antilles Guilder', 'symbol' => 'ƒ', 'html_entities' => 'ƒ', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'AOA', 'name' => 'Angola Kwanza', 'symbol' => 'Kz', 'html_entities' => 'Kz', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'ARS', 'name' => 'Argentina Peso', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'AUD', 'name' => 'Australia Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'AWG', 'name' => 'Aruba Guilder', 'symbol' => 'ƒ', 'html_entities' => 'ƒ', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'AZN', 'name' => 'Azerbaijan New Manat', 'symbol' => 'ман', 'html_entities' => 'ман', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BAM', 'name' => 'Bosnia and Herzegovina Convertible Marka', 'symbol' => 'KM', 'html_entities' => 'KM', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BBD', 'name' => 'Barbados Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BDT', 'name' => 'Bangladesh Taka', 'symbol' => '৳', 'html_entities' => '৳', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BGN', 'name' => 'Bulgaria Lev', 'symbol' => 'лв', 'html_entities' => 'лв', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BHD', 'name' => 'Bahrain Dinar', 'symbol' => null, 'html_entities' => '.د.ب', 'in_left' => '0', 'decimal_places' => '3', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BIF', 'name' => 'Burundi Franc', 'symbol' => 'FBu', 'html_entities' => 'FBu', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BMD', 'name' => 'Bermuda Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BND', 'name' => 'Brunei Darussalam Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BOB', 'name' => 'Bolivia Boliviano', 'symbol' => '$b', 'html_entities' => '$b', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BRL', 'name' => 'Brazil Real', 'symbol' => 'R$', 'html_entities' => 'R$', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BSD', 'name' => 'Bahamas Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BTN', 'name' => 'Bhutan Ngultrum', 'symbol' => null, 'html_entities' => 'Nu.', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BWP', 'name' => 'Botswana Pula', 'symbol' => 'P', 'html_entities' => 'P', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BYR', 'name' => 'Belarus Ruble', 'symbol' => 'p.', 'html_entities' => 'p.', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'BZD', 'name' => 'Belize Dollar', 'symbol' => 'BZ$', 'html_entities' => 'BZ$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'CAD', 'name' => 'Canada Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'CDF', 'name' => 'Congo/Kinshasa Franc', 'symbol' => 'Fr', 'html_entities' => 'FC', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'CHF', 'name' => 'Switzerland Franc', 'symbol' => 'Fr', 'html_entities' => 'CHF', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'CLP', 'name' => 'Chile Peso', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'CNY', 'name' => 'China Yuan Renminbi', 'symbol' => '¥', 'html_entities' => '¥', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'COP', 'name' => 'Colombia Peso', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'CRC', 'name' => 'Costa Rica Colon', 'symbol' => '₡', 'html_entities' => '₡', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'CUC', 'name' => 'Cuba Convertible Peso', 'symbol' => null, 'html_entities' => null, 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'CUP', 'name' => 'Cuba Peso', 'symbol' => '₱', 'html_entities' => '⃌', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'CVE', 'name' => 'Cape Verde Escudo', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'CZK', 'name' => 'Czech Republic Koruna', 'symbol' => 'Kč', 'html_entities' => 'Kč', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'DJF', 'name' => 'Djibouti Franc', 'symbol' => 'Fr', 'html_entities' => 'Fdj', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'DKK', 'name' => 'Denmark Krone', 'symbol' => 'kr', 'html_entities' => 'kr', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'DOP', 'name' => 'Dominican Republic Peso', 'symbol' => 'RD$', 'html_entities' => 'RD$', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'DZD', 'name' => 'Algeria Dinar', 'symbol' => 'DA', 'html_entities' => 'دج', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'EEK', 'name' => 'Estonia Kroon', 'symbol' => 'kr', 'html_entities' => null, 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'EGP', 'name' => 'Egypt Pound', 'symbol' => '£', 'html_entities' => '£', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'ERN', 'name' => 'Eritrea Nakfa', 'symbol' => 'Nfk', 'html_entities' => 'Nfk', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'ETB', 'name' => 'Ethiopia Birr', 'symbol' => 'Br', 'html_entities' => 'Br', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'EUR', 'name' => 'Euro Member Countries', 'symbol' => '€', 'html_entities' => '€', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => ',', 'thousand_separator' => ' ', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'FJD', 'name' => 'Fiji Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'FKP', 'name' => 'Falkland Islands (Malvinas) Pound', 'symbol' => '£', 'html_entities' => '£', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'GBP', 'name' => 'United Kingdom Pound', 'symbol' => '£', 'html_entities' => '£', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'GEL', 'name' => 'Georgia Lari', 'symbol' => null, 'html_entities' => 'ლ', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'GGP', 'name' => 'Guernsey Pound', 'symbol' => '£', 'html_entities' => null, 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'GHC', 'name' => 'Ghana Cedi', 'symbol' => 'GH¢', 'html_entities' => 'GH¢', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'GHS', 'name' => 'Ghana Cedi', 'symbol' => 'GH¢', 'html_entities' => 'GH¢', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'GIP', 'name' => 'Gibraltar Pound', 'symbol' => '£', 'html_entities' => '£', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'GMD', 'name' => 'Gambia Dalasi', 'symbol' => 'D', 'html_entities' => 'D', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'GNF', 'name' => 'Guinea Franc', 'symbol' => 'Fr', 'html_entities' => 'FG', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'GTQ', 'name' => 'Guatemala Quetzal', 'symbol' => 'Q', 'html_entities' => 'Q', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'GYD', 'name' => 'Guyana Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'HKD', 'name' => 'Hong Kong Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'HNL', 'name' => 'Honduras Lempira', 'symbol' => 'L', 'html_entities' => 'L', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'HRK', 'name' => 'Croatia Kuna', 'symbol' => 'kn', 'html_entities' => 'kn', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'HTG', 'name' => 'Haiti Gourde', 'symbol' => null, 'html_entities' => 'G', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'HUF', 'name' => 'Hungary Forint', 'symbol' => 'Ft', 'html_entities' => 'Ft', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'IDR', 'name' => 'Indonesia Rupiah', 'symbol' => 'Rp', 'html_entities' => 'Rp', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'ILS', 'name' => 'Israel Shekel', 'symbol' => '₪', 'html_entities' => '₪', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'IMP', 'name' => 'Isle of Man Pound', 'symbol' => '£', 'html_entities' => null, 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'INR', 'name' => 'India Rupee', 'symbol' => '₹', 'html_entities' => '₹', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'IQD', 'name' => 'Iraq Dinar', 'symbol' => 'د.ع;', 'html_entities' => 'ع.د', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'IRR', 'name' => 'Iran Rial', 'symbol' => '﷼', 'html_entities' => '﷼', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'ISK', 'name' => 'Iceland Krona', 'symbol' => 'kr', 'html_entities' => 'kr', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'JEP', 'name' => 'Jersey Pound', 'symbol' => '£', 'html_entities' => '£', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'JMD', 'name' => 'Jamaica Dollar', 'symbol' => 'J$', 'html_entities' => 'J$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'JOD', 'name' => 'Jordan Dinar', 'symbol' => null, 'html_entities' => 'JD', 'in_left' => '0', 'decimal_places' => '3', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'JPY', 'name' => 'Japan Yen', 'symbol' => '¥', 'html_entities' => '¥', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'KES', 'name' => 'Kenya Shilling', 'symbol' => 'KSh', 'html_entities' => 'KSh', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'KGS', 'name' => 'Kyrgyzstan Som', 'symbol' => 'лв', 'html_entities' => 'лв', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'KHR', 'name' => 'Cambodia Riel', 'symbol' => '៛', 'html_entities' => '៛', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'KMF', 'name' => 'Comoros Franc', 'symbol' => 'Fr', 'html_entities' => 'CF', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'KPW', 'name' => 'Korea (North) Won', 'symbol' => '₩', 'html_entities' => '₩', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'KRW', 'name' => 'Korea (South) Won', 'symbol' => '₩', 'html_entities' => '₩', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'KWD', 'name' => 'Kuwait Dinar', 'symbol' => 'د.ك', 'html_entities' => 'د.ك', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'KYD', 'name' => 'Cayman Islands Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'KZT', 'name' => 'Kazakhstan Tenge', 'symbol' => 'лв', 'html_entities' => 'лв', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'LAK', 'name' => 'Laos Kip', 'symbol' => '₭', 'html_entities' => '₭', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'LBP', 'name' => 'Lebanon Pound', 'symbol' => '£', 'html_entities' => '£', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'LKR', 'name' => 'Sri Lanka Rupee', 'symbol' => '₨', 'html_entities' => '₨', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'LRD', 'name' => 'Liberia Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'LSL', 'name' => 'Lesotho Loti', 'symbol' => 'M', 'html_entities' => 'L', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'LTL', 'name' => 'Lithuania Litas', 'symbol' => 'Lt', 'html_entities' => 'Lt', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'LVL', 'name' => 'Latvia Lat', 'symbol' => 'Ls', 'html_entities' => 'Ls', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'LYD', 'name' => 'Libya Dinar', 'symbol' => 'DL', 'html_entities' => 'ل.د', 'in_left' => '0', 'decimal_places' => '3', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MAD', 'name' => 'Morocco Dirham', 'symbol' => 'Dhs', 'html_entities' => 'د.م.', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MDL', 'name' => 'Moldova Leu', 'symbol' => null, 'html_entities' => 'L', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MGA', 'name' => 'Madagascar Ariary', 'symbol' => 'Ar', 'html_entities' => 'Ar', 'in_left' => '0', 'decimal_places' => '5', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MKD', 'name' => 'Macedonia Denar', 'symbol' => 'ден', 'html_entities' => 'ден', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MMK', 'name' => 'Myanmar (Burma) Kyat', 'symbol' => null, 'html_entities' => 'K', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MNT', 'name' => 'Mongolia Tughrik', 'symbol' => '₮', 'html_entities' => '₮', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MOP', 'name' => 'Macau Pataca', 'symbol' => null, 'html_entities' => 'MOP$', 'in_left' => '0', 'decimal_places' => '1', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MRO', 'name' => 'Mauritania Ouguiya', 'symbol' => 'UM', 'html_entities' => 'UM', 'in_left' => '0', 'decimal_places' => '5', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MUR', 'name' => 'Mauritius Rupee', 'symbol' => '₨', 'html_entities' => '₨', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MVR', 'name' => 'Maldives (Maldive Islands) Rufiyaa', 'symbol' => null, 'html_entities' => '.ރ', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MWK', 'name' => 'Malawi Kwacha', 'symbol' => 'MK', 'html_entities' => 'MK', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MXN', 'name' => 'Mexico Peso', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MYR', 'name' => 'Malaysia Ringgit', 'symbol' => 'RM', 'html_entities' => 'RM', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'MZN', 'name' => 'Mozambique Metical', 'symbol' => 'MT', 'html_entities' => 'MT', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'NAD', 'name' => 'Namibia Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'NGN', 'name' => 'Nigeria Naira', 'symbol' => '₦', 'html_entities' => '₦', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'NIO', 'name' => 'Nicaragua Cordoba', 'symbol' => 'C$', 'html_entities' => 'C$', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'NOK', 'name' => 'Norway Krone', 'symbol' => 'kr', 'html_entities' => 'kr', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'NPR', 'name' => 'Nepal Rupee', 'symbol' => '₨', 'html_entities' => '₨', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'NZD', 'name' => 'New Zealand Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'OMR', 'name' => 'Omani Rial', 'symbol' => 'ر.ع.', 'html_entities' => '', 'in_left' => '0', 'decimal_places' => '3', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'PAB', 'name' => 'Panama Balboa', 'symbol' => 'B/.', 'html_entities' => 'B/.', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'PEN', 'name' => 'Peru Nuevo Sol', 'symbol' => 'S/.', 'html_entities' => 'S/.', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'PGK', 'name' => 'Papua New Guinea Kina', 'symbol' => null, 'html_entities' => 'K', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'PHP', 'name' => 'Philippines Peso', 'symbol' => '₱', 'html_entities' => '₱', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'PKR', 'name' => 'Pakistan Rupee', 'symbol' => '₨', 'html_entities' => '₨', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'PLN', 'name' => 'Poland Zloty', 'symbol' => 'zł', 'html_entities' => 'zł', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'PYG', 'name' => 'Paraguay Guarani', 'symbol' => 'Gs', 'html_entities' => 'Gs', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'QAR', 'name' => 'Qatar Riyal', 'symbol' => '﷼', 'html_entities' => '﷼', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'RON', 'name' => 'Romania New Leu', 'symbol' => 'lei', 'html_entities' => 'lei', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'RSD', 'name' => 'Serbia Dinar', 'symbol' => 'Дин.', 'html_entities' => 'Дин.', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'RUB', 'name' => 'Russia Ruble', 'symbol' => '₽', 'html_entities' => '₽', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'RWF', 'name' => 'Rwanda Franc', 'symbol' => 'FRw', 'html_entities' => 'ر.س', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SAR', 'name' => 'Saudi Arabia Riyal', 'symbol' => '﷼', 'html_entities' => '﷼', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SBD', 'name' => 'Solomon Islands Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SCR', 'name' => 'Seychelles Rupee', 'symbol' => '₨', 'html_entities' => '₨', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SDG', 'name' => 'Sudan Pound', 'symbol' => 'DS', 'html_entities' => '£', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SEK', 'name' => 'Sweden Krona', 'symbol' => 'kr', 'html_entities' => 'kr', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SGD', 'name' => 'Singapore Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SHP', 'name' => 'Saint Helena Pound', 'symbol' => '£', 'html_entities' => '£', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SLL', 'name' => 'Sierra Leone Leone', 'symbol' => 'Le', 'html_entities' => 'Le', 'in_left' => '1', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SOS', 'name' => 'Somalia Shilling', 'symbol' => 'S', 'html_entities' => 'S', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SPL', 'name' => 'Seborga Luigino', 'symbol' => null, 'html_entities' => null, 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SRD', 'name' => 'Suriname Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SSP', 'name' => 'South Sudanese Pound', 'symbol' => '£', 'html_entities' => '£', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'STD', 'name' => 'São Tomé and Príncipe Dobra', 'symbol' => 'Db', 'html_entities' => 'Db', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SVC', 'name' => 'El Salvador Colon', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SYP', 'name' => 'Syria Pound', 'symbol' => '£', 'html_entities' => '£', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'SZL', 'name' => 'Swaziland Lilangeni', 'symbol' => 'E', 'html_entities' => 'L', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'THB', 'name' => 'Thailand Baht', 'symbol' => '฿', 'html_entities' => '฿', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'TJS', 'name' => 'Tajikistan Somoni', 'symbol' => null, 'html_entities' => 'TJS', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'TMT', 'name' => 'Turkmenistan Manat', 'symbol' => null, 'html_entities' => 'm', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'TND', 'name' => 'Tunisia Dinar', 'symbol' => 'DT', 'html_entities' => 'د.ت', 'in_left' => '1', 'decimal_places' => '3', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'TOP', 'name' => 'Tonga Pa\'anga', 'symbol' => null, 'html_entities' => 'T$', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'TRL', 'name' => 'Turkey Lira', 'symbol' => '₤', 'html_entities' => null, 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'TRY', 'name' => 'Turkey Lira', 'symbol' => '₺', 'html_entities' => '₺', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'TTD', 'name' => 'Trinidad and Tobago Dollar', 'symbol' => 'TT$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'TVD', 'name' => 'Tuvalu Dollar', 'symbol' => '$', 'html_entities' => null, 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'TWD', 'name' => 'Taiwan New Dollar', 'symbol' => 'NT$', 'html_entities' => 'NT$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'TZS', 'name' => 'Tanzania Shilling', 'symbol' => 'TSh', 'html_entities' => 'TSh', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'UAH', 'name' => 'Ukraine Hryvnia', 'symbol' => '₴', 'html_entities' => '₴', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'UGX', 'name' => 'Uganda Shilling', 'symbol' => 'USh', 'html_entities' => 'USh', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'USD', 'name' => 'United States Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'UYU', 'name' => 'Uruguay Peso', 'symbol' => '$U', 'html_entities' => '$U', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'UZS', 'name' => 'Uzbekistan Som', 'symbol' => 'лв', 'html_entities' => 'лв', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'VEF', 'name' => 'Venezuela Bolivar', 'symbol' => 'Bs', 'html_entities' => 'Bs', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'VND', 'name' => 'Viet Nam Dong', 'symbol' => '₫', 'html_entities' => '₫', 'in_left' => '1', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'VUV', 'name' => 'Vanuatu Vatu', 'symbol' => null, 'html_entities' => 'VT', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'WST', 'name' => 'Samoa Tala', 'symbol' => null, 'html_entities' => 'WS$', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'XAF', 'name' => 'Communauté Financière Africaine (CFA) Franc B (BEAC)', 'symbol' => 'F', 'html_entities' => 'FCFA', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'XCD', 'name' => 'East Caribbean Dollar', 'symbol' => '$', 'html_entities' => '$', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'XDR', 'name' => 'International Monetary Fund (IMF) Special Drawing ', 'symbol' => null, 'html_entities' => '', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'XOF', 'name' => 'Communauté Financière Africaine (CFA) Franc (BCEAO)', 'symbol' => 'FCFA', 'html_entities' => 'FCFA', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'XPF', 'name' => 'Comptoirs Français du Pacifique (CFP) Franc', 'symbol' => 'F', 'html_entities' => 'F', 'in_left' => '0', 'decimal_places' => '0', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'YER', 'name' => 'Yemen Rial', 'symbol' => '﷼', 'html_entities' => '﷼', 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'ZAR', 'name' => 'South Africa Rand', 'symbol' => 'R', 'html_entities' => 'R', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'ZMW', 'name' => 'Zambia Kwacha', 'symbol' => 'ZK', 'html_entities' => null, 'in_left' => '0', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'ZWD', 'name' => 'Zimbabwe Dollar', 'symbol' => 'Z$', 'html_entities' => null, 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'ZWL', 'name' => 'Zimbabwe Dollar', 'symbol' => 'Z$', 'html_entities' => null, 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], [ 'code' => 'XBT', 'name' => 'Bitcoin', 'symbol' => '฿', 'html_entities' => '฿', 'in_left' => '1', 'decimal_places' => '2', 'decimal_separator' => '.', 'thousand_separator' => ',', 'created_at' => now()->format('Y-m-d H:i:s'), 'updated_at' => now()->format('Y-m-d H:i:s'), ], ]; $tableName = (new Currency())->getTable(); foreach ($entries as $entry) { DB::table($tableName)->insert($entry); } } }