PHP code example of khidirdotid / flashmobile-laravel

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

    

khidirdotid / flashmobile-laravel example snippets


    'FlashMobile' => KhidirDotID\FlashMobile\Facades\FlashMobile::class,
    

    \FlashMobile::setClientId('FLASH_CLIENT_ID');
    \FlashMobile::setSecretKey('FLASH_SECRET_KEY');
    \FlashMobile::setProduction(false);
    

    $data = [
        'terminal_id' => 'INV-' . time(),
        'external_id' => 'INV-' . time(),
        'amount' => 10000,
        'session_time' => 1, // in minutes
        'fullname' => '',
        'email' => '',
        'phone_number' => ''
    ];

    try {
        // Get QR String
        $payment = \FlashMobile::createQRPayment($data);

        // Combine with QR Generator Package. e.g: simplesoftwareio/simple-qrcode
        $qrCode = \SimpleSoftwareIO\QrCode\Facades\QrCode::generate($payment['qr_string']);
        echo '<img src="data:image/svg+xml;base64,{{ base64_encode($qrCode) }}">';
    } catch (\Throwable $th) {
        throw $th;
    }
    

    Route::match(['GET', 'POST'], 'flash.ipn', [PaymentController::class, 'flashIpn'])->name('flash.ipn');
    

    public function paymentIpn(Request $request)
    {
        try {
            $response = \FlashMobile::getPaymentStatus($request->transaction_id);

            if (strtolower($response['status']) == 'success') {
                // TODO: Set payment status in merchant's database to 'success'
            }
        } catch (\Throwable $th) {
            throw $th;
        }
    }
    

    protected $except = [
        'flash/ipn'
    ];
    
bash
    php artisan vendor:publish --provider="KhidirDotID\FlashMobile\Providers\FlashMobileServiceProvider"