'Czech Republic', ]; /** * Run the database seeds. */ public function run(): void { foreach (static::COUNTRIES as $countryCode => $countryName) { try { Country::create(['country_code' => $countryCode, 'name' => $countryName]); } catch (UniqueConstraintViolationException $e) { // safe to ignore duplicate entries } } // } }