baseUri = config('services.wallet_service.base_uri'); $this->key = config('services.wallet_service.key'); } public function post($uri , $data) { return $this->perfomRequest('POST',$uri,$data); } public function get($uri , $data) { return $this->perfomRequest('GET',$uri,$data); } }