*/ public function toArray(Request $request): array { return [ 'id' => $this->uuid, 'name' => $this->name, 'location' => $this->full_address, 'latitude' => (float) $this->latitude, 'longitude' => (float) $this->longitude, 'is_active' => $this->is_active ]; } }