PHP code example of sh4dw / laracvr

1. Go to this page and download the library: Download sh4dw/laracvr 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/ */

    

sh4dw / laracvr example snippets

 php
use Sh4dw\Laracvr\CVRClient;

$query = [
    'term' => [
    'cvrNummer' =>  <A VALID CVR>
    ]
];

$response = CVRClient::request($query);
return $response;