41, 'name' => 'Lao', 'locale' => 'lo_LA']); } $cur = \App\Models\Currency::find(121); if(!$cur) { $cur = new \App\Models\Currency(); $cur->id = 121; $cur->code = 'LAK'; $cur->name = "Lao kip"; $cur->symbol = '₭'; $cur->thousand_separator = ','; $cur->decimal_separator = '.'; $cur->precision = 2; $cur->save(); } } /** * Reverse the migrations. */ public function down(): void { // } };