LaravelPackages.net
Acme Inc.
Toggle sidebar
zarulizham/laravel-duitnow

Malaysia DuitNow payment

5.932
9
2.0.7
About zarulizham/laravel-duitnow

zarulizham/laravel-duitnow is a Laravel package for malaysia duitnow payment. It currently has 9 GitHub stars and 5.932 downloads on Packagist (latest version 2.0.7). Install it with composer require zarulizham/laravel-duitnow. Discover more Laravel packages by zarulizham or browse all Laravel packages to compare alternatives.

Last updated

Malaysia DuitNow Online Banking/Wallet Payment

DNOBW Logo

Latest Version on Packagist Total Downloads

Package for Malaysia DuitNow Online Banking/Wallet Payment

Installation

You can install the package via composer:

composer require zarulizham/laravel-duitnow

You can publish and run the migrations with:

php artisan vendor:publish --tag="duitnow-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag="duitnow-config"

You can publish the controller file with:

php artisan vendor:publish --tag="duitnow-controller"

This is the contents of the published config file:

return [
    'url' => env('DUITNOW_URL'),
    'client_id' => env('DUITNOW_CLIENT_ID'),
    'product_id' => env('DUITNOW_PRODUCT_ID'),
    'client_secret' => env('DUITNOW_CLIENT_SECRET'),
    'merchant_id' => env('DUITNOW_MERCHANT_ID'),
    'x_signature_key' => env('DUITNOW_X_SIGNATURE_KEY'),
    'token_expiry' => env('DUITNOW_TOKEN_EXPIRY', 3600),
    'bank_cache' => env('DUITNOW_BANK_CACHE', 43200), # 12 hours
    'merchant_name' => env('DUITNOW_MERCHANT_NAME'),
    'account_type' => env('DUITNOW_MERCHANT_ACCOUNT_TYPE'),

    'source_of_funds' => [
        "01"
    ],

    'certificates' => [
        'uat' => [
            'disk' => 'local',
            'dir' => 'paynet/duitnow/',
        ],
        'production' => [
            'disk' => 'local',
            'dir' => 'paynet/duitnow/',
        ]
    ],

    'direct_path' => env('DUITNOW_DIRECT_PATH'),
    'callback_path' => env('DUITNOW_CALLBACK_PATH'),
];

Optionally, you can publish the views using

php artisan vendor:publish --tag="duitnow-views"

Usage

    $duitNowPayment = new DuitNowPayment();

    $bankInfo = explode('|', $request->bank);
    $bankId = $bankInfo[0];
    $bankType = $bankInfo[1];

    $redirectUrl = $duitNowPayment->initiatePayment(10, "Zarul Zubir", $bankType, "Ref: " . rand(100, 200), $bankId, 'A1000001');

Upgrade v1 to v2

This major upgrade add column on transaction table to allow morphing.

Run `php artisan vendor:publish --tag=duitnow-v2-migration`

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

Comments