Access IFTA (International Fuel Tax Agreement) reports for tax compliance.
Basic Usage
useSamsara\Facades\Samsara;// Get IFTA jurisdiction report$report=Samsara::ifta()->jurisdictionReport(['year'=>2024,'quarter'=>1,]);// Get IFTA vehicle report$vehicleReport=Samsara::ifta()->vehicleReport(['year'=>2024,'quarter'=>1,]);
CSV Exports
// Request a detail CSV export$export=Samsara::ifta()->detailCsv(['year'=>2024,'quarter'=>1,]);// Get the export ID$exportId=$export['id'];// Retrieve the CSV export$csv=Samsara::ifta()->getDetailCsv($exportId);