/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/Invoice.php (2371B)
getEntityUrl() . $this->id . '/cancel'; return $this->request(Requests::POST, $url); } /** * Send/re-send notification for invoice by given medium * * @param $medium - sms|email * * @return array */ public function notifyBy($medium) { $url = $this->getEntityUrl() . $this->id . '/notify_by/' . $medium; $r = new Request(); return $r->request(Requests::POST, $url); } /** * Patches given invoice with new attributes * * @param array $attributes * * @return Invoice */ public function edit($attributes = array()) { $url = $this->getEntityUrl() . $this->id; return $this->request(Requests::PATCH, $url, $attributes); } /** * Issues drafted invoice * * @return Invoice */ public function issue() { $url = $this->getEntityUrl() . $this->id . '/issue'; return $this->request(Requests::POST, $url); } /** * Deletes drafted invoice * * @return Invoice */ public function delete() { $url = $this->getEntityUrl() . $this->id; $r = new Request(); return $r->request(Requests::DELETE, $url); } }