PHP code example of pro-cms / laravel-pesa

1. Go to this page and download the library: Download pro-cms/laravel-pesa 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/ */

    

pro-cms / laravel-pesa example snippets


public function store()
{
    $data = [
        'input_Amount'=>5000,
        // ...
    ];

    try {
        pesa()->c2b($data);
    } catch(\Throwable $th) {
    }

    return back();
}
sh
php artisan vendor:publish --provider="Openpesa\PesaServiceProvider"