/home/techb158/ileadtechnology.com/vendor/razorpay/razorpay/src
NameSizeModeActions
Errors/-0755rm
Addon.php5560644editdlrm
Api.php16480644editdlrm
ArrayableInterface.php1770644editdlrm
Card.php1820644editdlrm
Collection.php3080644editdlrm
Customer.php7210644editdlrm
Entity.php57060644editdlrm
FundAccount.php5220644editdlrm
Invoice.php23710644editdlrm
Item.php6540644editdlrm
Order.php9160644editdlrm
Payment.php50900644editdlrm
PaymentLink.php17830644editdlrm
PaymentPage.php5820644editdlrm
Plan.php3410644editdlrm
QrCode.php15010644editdlrm
Refund.php7520644editdlrm
Request.php60560644editdlrm
Resource.php11580644editdlrm
Settlement.php20030644editdlrm
Subscription.php22460644editdlrm
Token.php6770644editdlrm
Transfer.php14420644editdlrm
Utility.php26940644editdlrm
VirtualAccount.php13630644editdlrm
Webhook.php7270644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/razorpay/razorpay/src/Settlement.php (2003B)
getEntityUrl() ."ondemand" ; return $this->request('POST', $relativeUrl, $attributes); } /** * Fetch single settlement entity * @param string $id * @return Settlement */ public function fetch($id) { return parent::fetch($id); } /** * Get all settlements according to options * @param array $options * @return Collection */ public function all($options = array()) { return parent::all($options); } /** * Get combined report of settlements * @param array $options * @return array */ public function reports($options = array()) { $relativeUrl = $this->getEntityUrl() . 'report/combined'; return $this->request('GET', $relativeUrl, $options); } /** * Get Settlement Recon * @param array $options * @return array */ public function settlementRecon($options = array()) { $relativeUrl = $this->getEntityUrl() . 'recon/combined'; return $this->request('GET', $relativeUrl, $options); } /** * fetch Ondemand Settlement by Id * @param string $id * @return array */ public function fetchOndemandSettlementById() { $relativeUrl = $this->getEntityUrl(). "ondemand/" . $this->id ; return $this->request('GET', $relativeUrl); } /** * fetch all Ondemand Settlement * @return array */ public function fetchAllOndemandSettlement() { $relativeUrl = $this->getEntityUrl(). "ondemand/"; return $this->request('GET', $relativeUrl); } }