PHP code example of jackmartin / laravel-popolniclub

1. Go to this page and download the library: Download jackmartin/laravel-popolniclub library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jackmartin / laravel-popolniclub example snippets


PopolniClubLaravel\PopolniClubServiceProvider::class

'PopolniClubLaravel' => PopolniClubLaravel\Facades\PopolniClubFacade::class,

'login'           => ''

'password'        => ''

'sandbox'         => false

print_r(

    \PopolniClubLaravel::setTransactionID()
        ->setSumm(1)
        ->setPhone('380000000000')
        ->setTemplateID()
        ->addPayment()
        ->sendPayment()
        ->getData()

);

print_r(

    \PopolniClubLaravel::addTransaction(1000000001)->statusPayment()->getData()

);

print_r(

    \PopolniClubLaravel::currentBalance()->getData()
    // \PopolniClubLaravel::currentBalance()->balance()
    // \PopolniClubLaravel::currentBalance()->balance(true)
    // \PopolniClubLaravel::currentBalance()->credit()

);
sh
php artisan vendor:publish
sh
php artisan vendor:publish --provider="PopolniClubLaravel\PopolniClubServiceProvider" --tag="popolniclub-laravel-config"