get("https://gist.github.com/MuhammadSaim/41ebdc2f44fbc0625de4d73a372ce843/raw/c343fd2a81356cbab4c46ef6646332c3e91675f7/countries.json"); $countries = $countries->json(); foreach ($countries as $country){ Country::create([ 'iso' => $country['iso'], 'name' => $country['name'], 'nicename' => $country['nicename'], 'iso3' => $country['iso3'], 'numcode' => $country['numcode'], 'phonecode' => $country['phonecode'], ]); } }catch (\Exception $e){ throw new \Exception($e->getMessage()); } } }