PHP code example of matusstafura / fioapi
1. Go to this page and download the library: Download matusstafura/fioapi 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/ */
matusstafura / fioapi example snippets
use Matusstafura\FioApi\Facades\FioReport;
FioReport::yesterday();
// will return transaction from previous day
FioReport::today();
// will return today's transactions
FioReport::betweenDates("2022-02-14", "2022-02-18");
// will return transactions between dates in format YYYY-MM-DD
shell
php artisan vendor:publish --tag="fio-report"