PHP code example of experteam / api-laravel-ebilling

1. Go to this page and download the library: Download experteam/api-laravel-ebilling 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/ */

    

experteam / api-laravel-ebilling example snippets


// Store a document request
$documentRequest = DocumentRequestManager::store($documentId, $service, $observation);

// Get document requests by document ID
$documentRequests = DocumentRequestManager::getByDocumentId($documentId);

php artisan migrate