Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Optional Laravel integration.
.env
ORCHESTRATE_SECRET_KEY=sk_live_xxx
php artisan vendor:publish --tag=orchestrate-config
return [ 'secret_key' => env('ORCHESTRATE_SECRET_KEY'), 'base_uri' => env('ORCHESTRATE_BASE_URI', 'https://api.orqex.com/v1'), 'timeout' => (float) env('ORCHESTRATE_TIMEOUT', 30), 'connect_timeout' => (float) env('ORCHESTRATE_CONNECT_TIMEOUT', 10), 'max_retries' => (int) env('ORCHESTRATE_MAX_RETRIES', 2), ];
use Orqex\Orchestrate\OrchestrateClient; use Orqex\Orchestrate\Laravel\Facades\Orchestrate; // From the container app(OrchestrateClient::class)->paymentIntents()->all(); // Via the facade Orchestrate::paymentIntents()->create([ 'amount' => 50, 'currency' => 'XOF', 'description' => 'Order #1024', 'customer' => ['email' => '[email protected]', 'first_name' => 'Ama', 'last_name' => 'Mensah'], ]);
Was this page helpful?