Payment system for October. Allows the generation of invoices and use of payment gateways, supplied by this plugin or others.
This plugin requires the following plugins:
The following plugins are required
User
Front-end user management.
User
Front-end user management.
User Plus+
Adds extra features to the User plugin.
User Plus+
Adds extra features to the User plugin.
Location
Adds location based features, such as Country and State.
Location
Adds location based features, such as Country and State.
Currency
Tools for currency display and conversion
Currency
Tools for currency display and conversion
The following plugins extend or depend on the plugin
The following themes use this plugin
Installation via Command Line
php artisan plugin:install Responsiv.Pay
- Introduction - explains how to get started using the Pay plugin
- Setting Up - setting up invoices and payment pages on the frontend
- Building Payment Types - how to implement custom integration with your own payment gateway
-
Nick Khaetsky
Found the plugin useful on 14 May, 2019
Great plugin! Was helpful in many projects
-
Publipresse Médias
Found the plugin not useful on 20 Apr, 2019
Seems to not be maintained anymore :/ Shame cause it would be a good base plugin for all plugins handling payments. Would love to see that plugin handled and maintained by RainLab to provide to all developpers a unified way to add payment gateway to their solutions
-
Wiego Bergsma
Found the plugin useful on 18 Dec, 2018
Offers a nice foundation for invoicing and payments.
It needs a little TLC but there is a lot of potential for this plugin as a basis that can be extended by other plugins in many interesting ways.
-
Daniel Tamas
Found the plugin not useful on 19 Feb, 2017
For some reason it won't install
-
ioCare
Found the plugin useful on 26 Jul, 2016
Best and simple Invoicing System. It will be nice if you can incarporate few features from InvoicePlane. Also need little documentation about creating custom Payment method.
-
| 3.1.3 |
Added support for merging users Apr 02, 2026 |
|---|---|
| 3.1.2 |
Added Activity Log entry for paid invoices Mar 29, 2026 |
| 3.1.1 |
Added RazorPay payment gateway Mar 28, 2026 |
| 3.1.0 |
Added credit notes support Mar 25, 2026 |
| 3.0.0 |
Added refunded invoice status and PayPal webhook support Mar 20, 2026 |
| 2.0.4 |
Fixes for PHP 8.4 Mar 20, 2026 |
| 2.0.3 |
Fixes bug in PayPal gateway amounts Feb 04, 2025 |
| 2.0.2 |
Update Stripe and PayPal gateway instructions Aug 12, 2024 |
| 2.0.0 |
Major Upgrade to Currency Plugin Aug 02, 2024 |
| 1.3.1 |
Adding a cache clearing method to the tax model Mar 28, 2024 |
| 1.3.0 |
Add currency to invoices table Mar 28, 2024 |
| 1.2.0 |
Add VAT ID to invoices, translate models and add Polish translation Mar 28, 2024 |
| 1.1.4 |
Discount field now displays the proper (%) figure but stores as a decimal Mar 28, 2024 |
| 1.1.3 |
Minor fix in discount calculation Dec 07, 2019 |
| 1.1.2 |
Fix issue with countries in Tax class Dec 07, 2019 |
| 1.1.1 |
Added a throwaway flag to invoices. Jan 23, 2018 |
| 1.1.0 |
!!! Add support for payment profiles. Jan 23, 2018 |
| 1.0.4 |
Invoice items now support related objects. Oct 12, 2016 |
| 1.0.3 |
Fixes bug in Skrill payment method when saving. Oct 12, 2016 |
| 1.0.2 |
Payment settings can now push the invoice number forward. Aug 23, 2016 |
| 1.0.1 |
First version of Pay Jul 02, 2016 |
Upgrading To 1.1
There are some housekeeping items that have been addressed in this version.
The payment gateway partials folder has been renamed from pay to pay-gateway.
The InvoiceStatus::getByCode method has been renamed to InvoiceStatus::findByCode.
These methods have been removed from the InvoiceStatus model:
- getStatusDraft
- getStatusApproved
- getStatusPaid
- getStatusVoid
Use the findByCode method instead, eg:
InvoiceStatus::findByCode(InvoiceStatus::STATUS_DRAFT)
Updates to Offline, Skrill and Paypal Standard gateway partials
The getFormAction, getHiddenFields and getPaymentInstructions methods no longer take the host as the first name as this argument is redundant. Perform these replacements in your theme:
// Replace paymentMethod.getFormAction(paymentMethod) // With paymentMethod.getFormAction() // Replace paymentMethod.getHiddenFields(paymentMethod, invoice) // With paymentMethod.getHiddenFields(invoice) // Replace paymentMethod.getPaymentInstructions(paymentMethod, invoice) // With paymentMethod.getPaymentInstructions(invoice)
