/**
  * @test
  */
 public function to_array_wont_break_if_no_translations_exist()
 {
     $country = new Country(['code' => 'test']);
     $country->save();
     $country->toArray();
 }