*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'name' => $this->name, 'address_line1' => $this->address_line1, 'address_line2' => $this->address_line2, 'postal_code' => $this->postal_code, 'city' => $this->city, 'country_code' => $this->country_code, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, ]; } }