PHP code example of tbclla / laravel-revolut-merchant
1. Go to this page and download the library: Download tbclla/laravel-revolut-merchant 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/ */
tbclla / laravel-revolut-merchant example snippets
use tbclla\RevolutMerchant\Client;
// sandbox
$merchant = new Client('your_api_key', true);
// production
$merchant = new Client('your_api_key');
$merchant->order()->get($orderId);
use tbclla\RevolutMerchant\Facades\Merchant;
Merchant::order()->get($id);