Collecting Payments
use Seunex17\FlutterwaveCi4\Flutterwave\CollectPayment;Flutterwave Standard
$data = [
'tx_ref' => time(), // Can be replace with your unique ref code
'amount' => '500',
'currency' => 'NGN', // or EUR or GBP for EU Collection.
'meta' => [
'product_id' => 1,
'product_sku' => 'sku_1234'
], // This meta param is optional just to send extra info
'customer_email' => 'johndoe@mail.com',
'customer_name' => 'John Doe',
'redirect_url' => base_url('verify'),
];
return CollectPayment::standard($data);Card Charge
Tokenize Charge
Last updated