<?php
use Fyatu\Sdk\Fyatu;
$fyatu = new Fyatu([
'appId' => 'your_app_id',
'secretKey' => 'your_secret_key',
]);
// Create a collection
$collection = $fyatu->collections->create([
'amount' => 10.00,
'currency' => 'USD',
'reference' => 'order_123',
'description' => 'Payment for Order #123',
'customer' => [
'email' => '[email protected]',
'name' => 'John Doe',
],
'redirectUrl' => 'https://yoursite.com/payment/success',
'webhookUrl' => 'https://yoursite.com/webhooks/fyatu',
]);
echo $collection->checkoutUrl;