Download the PHP package necessarylion/opn-payments-laravel without Composer
On this page you can find all versions of the php package necessarylion/opn-payments-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download necessarylion/opn-payments-laravel
More information about necessarylion/opn-payments-laravel
Files in necessarylion/opn-payments-laravel
Package opn-payments-laravel
Short Description Laravel package for Opn Payments
License MIT
Informations about the package opn-payments-laravel
Opn Payments Laravel Package (Unofficial)
A Laravel package for integrating Opn Payments (formerly Omise) using the omise-php SDK. This package provides a simple way to implement payments in your Laravel project with a ready-made payment form and automatic payment handling.

Installation
-
Install Package
-
Generate vendor
-
Run Migration
-
Register Event Listener (optional)
- Register
OpnPaymentCompleted
class inapp/Providers/EventServiceProvider.php
\ to handle your order, sending email etc...
- Register
- Add credentials in .env file
- Make sure that
APP_URL
include port if you are running on port - Example
Create Charge
Create charge using redirect url function
Fields | Type | Description |
---|---|---|
amount |
int |
Amount to charge |
currency |
string |
Currency of the amount eg. THB, SGD, RGN. You can use OpnPaymentsCurrency helper class for this field |
cancelUri |
string |
Url to redirect back if the user cancel payment |
redirectUri |
string |
Url to redirect back if the payment completed |
orderId |
string |
Unique order Id. |
paymentMethods |
array |
Array of payment methods. You can see list of supported methods here |
locale |
string |
Language, such ash , en, th, ja. You can use OpnPaymentsLocale helper class for this field |
metaData |
array |
Extra meta data to append. |
Product List
If you want to show list of products in payment page, you can do as below.
OR
Event Listener
Handle Completed Payment using OpnPaymentHandler
Listener\
\
in app/Listeners/OpnPaymentHandler.php
, you can check the payment_successful
status of payment attempt.\
to handle order, sending email etc..
Scheduler
Register scheduler for pending charges.
This scheduler will get all pending charge from records withing 24 hours. Then it will fetch status from Opn API and update if success or failed.
In app/Console/Kernel.php
inside schedule()
function add below line.
Additional Functions
Name | Description |
---|---|
OpnPayments::charge() |
To create/retrieve charge |
OpnPayments::account() |
To retrieve account information |
OpnPayments::capability() |
To retrieve capability data |
OpnPayments::card() |
To create/retrieve card |
OpnPayments::token() |
To create/retrieve token |
OpnPayments::refund() |
To create/retrieve refund |
OpnPayments::event() |
To create/retrieve event |
OpnPayments::source() |
To create/retrieve source |
OpnPayments::customer() |
To create/retrieve customer |
OpnPayments::receipt() |
To create/retrieve receipt |
OpnPayments::transfer() |
To create/retrieve transfer |
OpnPayments::balance() |
To create/retrieve balance |
Contribute
Want to contribute? Great! Fork the repo and create PR to us.
Development Process
- In your Laravel project
- Create packages folder
mkdir packages
- And clone our package
git clone [email protected]:necessarylion/opn-payments-laravel.git