8889841chome/clixcotz/fmi.clix.co.tz/vendor/srmklive/paypal/src/Traits/PayPalAPI/Reporting.php000064400000003327150537434260024774 0ustar00isEmpty() ? '' : collect($filters)->map(function ($value, $key) { return "{$key}={$value}&"; })->implode(''); $this->apiEndPoint = "v1/reporting/transactions?{$filters_list}fields={$fields}&page={$page}&page_size={$page_size}"; $this->verb = 'get'; return $this->doPayPalRequest(); } /** * List available balance. * * @param string $date * @param string $balance_currency * * @throws \Throwable * * @return array|\Psr\Http\Message\StreamInterface|string * * @see https://developer.paypal.com/docs/api/transaction-search/v1/#balances_get */ public function listBalances(string $date = '', string $balance_currency = '') { $date = empty($date) ? Carbon::now()->toIso8601String() : Carbon::parse($date)->toIso8601String(); $currency = empty($currency) ? $this->getCurrency() : $balance_currency; $this->apiEndPoint = "v1/reporting/balances?currency_code={$currency}&as_of_date={$date}"; $this->verb = 'get'; return $this->doPayPalRequest(); } }