*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'country_id' => $this->country_id, 'name' => $this->name, 'slug' => $this->slug, 'longitude' => $this->longitude, 'latitude' => $this->latitude, 'population' => $this->population, 'created_by' => $this->created_by, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, ]; } }