PHP code example of weble / cercaimprese

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

    

weble / cercaimprese example snippets


return [
    'token' => env('CERCAIMPRESE_TOKEN', ''),
    'test' => env('CERCAIMPRESE_TEST', true)
];

$result = \Weble\CercaImprese\Facades\CercaImprese::base(search: '[PIVA_OR_CF_OR_ID]');
 
$result = \Weble\CercaImprese\Facades\CercaImprese::advanced( 
    denominazione: $denominazione,
    provincia: $provincia,
    codice_ateco: $codice_ateco,
    fatturato_min: $fatturato_min,
    fatturato_max: $fatturato_max,
    dipendenti_min: $dipendenti_min,
    dipendenti_max: $dipendenti_max,
    limite: $limite,
    dry_run: $dry_run
);
bash
php artisan vendor:publish --tag="cercaimprese-config"