PHP code example of mirhamit / pod-bank-service

1. Go to this page and download the library: Download mirhamit/pod-bank-service 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/ */

    

mirhamit / pod-bank-service example snippets


use MirHamit\PodBankService\Services\SavingAccount;

$account = new SavingAccount();
return $account->estelamSheba($sheba, $paymentId);

use MirHamit\PodBankService\Services\SavingAccount;

$account = new SavingAccount();
return $account->mojudi()

use MirHamit\PodBankService\Services\SavingAccount;

$account = new SavingAccount();
return $account->suratHesab($fromDate, $toDate, $fromHour, $toHour, $resultCount);

use MirHamit\PodBankService\Services\SavingAccount;

$account = new SavingAccount();

return $account->enteghalVajhPaya(
        1000,
        'IR200610000000700813563379',
        'نام و نام خانوادگی',
        '1400/10/11', //تاریخ
        'شرح انتقال',
        'شرح مقصد',
        '123123123123', //شناسه‌ی واریز
        '' //شناسه یکتای تراکنش
    );
bash
php artisan vendor:publish --tag=pod-config