jagdish-j-p / fpx-payment
A laravel implementation for FPX payment service
Fund package maintenance!
jagdish-j-p
paypal.me/jagdishjptl
www.buymeacoffee.com/jagdish.j.ptl
Installs: 1 622
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 3
Forks: 11
Open Issues: 2
Requires
- php: ^7.4|^8.0
- eastwest/json: ^3.0
- laravelcollective/html: ^6.2
- monarobase/country-list: ^3.2
- nesbot/carbon: ^2.48.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.3.3
This package is auto-updated.
Last update: 2024-12-04 09:33:38 UTC
README
This package provides laravel implementations for Paynet FPX services.
Become a sponsor
Your support allows me to keep this package free, up-to-date and maintainable. Alternatively, you can spread the word!
Installation
You can install the package via composer:
composer require jagdish-j-p/fpx-payment
Then run the publish command to publish the config files and support controller
php artisan fpx:publish
This will generate the following files
- The config file with default setup for you to override
fpx.php
- The controller that will receive payment response and any host-to-host events
Http/Controllers/FPX/Controller.php
- The assets in public directory.
- The view file with default html for you to override
payment.blade.php
. Note do not change form action URLfpx.payment.auth.request
.
Setup
- Add your redirect urls and your Seller and Exchange ID to the
.env
file.
FPX_INDIRECT_PATH=payments/fpx/callback FPX_DIRECT_PATH=payments/fpx/webhook FPX_INDIRECT_URL="${APP_URL}/${FPX_INDIRECT_PATH}" FPX_DIRECT_URL="${APP_URL}/${FPX_DIRECT_PATH}" FPX_EXCHANGE_ID= FPX_SELLER_ID=
-
You can skip this steps, if you have already generated CSR. Visit
fpx/csr/request
path in browser to generate CSR.http://app.test/fpx/csr/request
Fill the form and click on
GENERATE
. On right side textarea will be generated with openSSL code. Download openSSL fromhttps://www.openssl.org/
if you don't have installed it. Run openssl code to generate CSR. Submit this CSR to FPX service provider to get the Exchange Certificates. -
After generating your certificates add them to your app. By default, we look for the certificates inside the following directives. Create
fpx/uat
andfpx/prod
directories instorage/app
directory and paste your certificates there. You can find UAT certificate infpx certificates/uat/fpxuat_current.cer
rename it with your Exchange ID and place it in mentioned UAT directory.
'certificates' => [ 'uat' => [ 'disk' => 'local', // S3 or Local. Don't put your certificate in public disk 'dir' => '/fpx/uat', ], 'production' => [ 'disk' => 'local', // S3 or Local. Don't put your certificate in public disk 'dir' => '/fpx/prod', ] ],
You can override the defaults by updating the config file.
- Run migration to add the banks and fpx_transactions table
php artisan migrate
- (Optional) Run this command if you encounter issue with the initial setup
php artisan optimize
Usage
- First run the following command to seed the banks list.
php artisan fpx:banks
you should schedule the fpx:banks Artisan command to run daily:
$schedule->command('fpx:banks')->daily();
- Add one the
x-fpx-payment
component with the following attributes
<x-fpx-payment :reference-id="$invoice->id" :datetime="$invoice->created_at->format('Ymdhms')" :amount="$invoice->total" :customer-name="$company->name" :customer-email="$company->owner->email" :product-description="Salary Invoice" :class="css class name for styling button">
During testing, you can use the test-mode
attribute to override the provided amount to 'MYR 1.00'
<x-fpx-payment :reference-id="$invoice->id" :datetime="$invoice->created_at->format('Ymdhms')" :amount="$invoice->total" :customer-name="$company->name" :customer-email="$company->owner->email" :product-description="Salary Invoice" :class="css class name for styling button" test-mode>
- Handle the payment response in
Http/Controllers/FPX/Controller.php
/** * This will be called after the user approve the payment * on the bank side * * @param Request $request * @return Response */ public function callback(Request $request) { $response = $request->handle(); // Update your order status } /** * This will handle any direct call from FPX * * @param Request $request * @return string */ public function webhook(Request $request) { $response = $request->handle(); // Update your order status return 'OK'; }
- Check Status of all pending transactions using command
php artisan fpx:payment-status
- Check Status of specific transaction using command pass comma saperated order reference ids.
php artisan fpx:payment-status reference_id1,reference_id2,reference_id3
- Check transaction status and Bank list from Controller
use JagdishJP/FpxPayment/Fpx; /** * Returns status of transaction * * @param string $reference_id reference order id * @return array */ $status = Fpx::getTransactionStatus($reference_id); /** * returns collection of bank_id and name * * @param bool $getLatest (optional) pass true to get latest banks * @return \Illuminate\Support\Collection */ $banks = Fpx::getBankList(true);
- API for transaction status
http://app.test/api/fpx/transaction/status/$reference_id
Web Integration
You can visit http://app.test/fpx/initiate/payment for the payment flow demo of web integration.
Mobile App Integration
- Append
app
parameter in the URL to check the demo. http://app.test/fpx/initiate/payment/app - This will print JSON response after completion of transaction to integrate with mobile app.
Follow these steps to integrate in mobile application.
Request Details
Open http://app.test/fpx/initiate/payment/app in web view with POST method and POST below parameters.
response_format = "JSON"
reference_id = unique order reference id
customer_name = name of the buyer/customer
amount = amount to be charged
customer_email = email id of customer
remark = remarks for the transaction
additional_params = any additional parameters you want to pass
Response
You must use response
field to display receipt. fpx_response
is added if you need any extra details.
response.status
will be succeeded, failed or pending.
{ "response": { "status": "succeeded/failed/pending", "message": "Payment is successfull", "transaction_id": "", "reference_id": "", "amount": "", "transaction_timestamp": "", "buyer_bank_name": "", "response_format": "JSON", "additional_params": "type=123" }, "fpx_response": { "fpx_debitAuthCode": "", "fpx_debitAuthNo": "", "fpx_sellerExId": "", "fpx_creditAuthNo": "", "fpx_buyerName": "", "fpx_buyerId": null, "fpx_sellerTxnTime": "", "fpx_sellerExOrderNo": "", "fpx_makerName": "", "fpx_buyerBankBranch": "", "fpx_buyerBankId": "", "fpx_msgToken": "", "fpx_creditAuthCode": "", "fpx_sellerId": "", "fpx_fpxTxnTime": "", "fpx_buyerIban": null, "fpx_sellerOrderNo": "", "fpx_txnAmount": "", "fpx_fpxTxnId": "", "fpx_checkSum": "", "fpx_msgType": "", "fpx_txnCurrency": "", } }
You can also override payment.blade.php
with your custom design to integrate with your layout. but do not change name
attribute of html controls and action
URL of form.
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email jagdish.j.ptl@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.