PHP code example of revolution / laravel-carsensor-api

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

    

revolution / laravel-carsensor-api example snippets



use CarSensor;

/**
* @param array $query = []
*
* @return object|array
*/
$results = CarSensor::usedcar();
dd($results);
# returns object

$usedcars = data_get($results, 'results.usedcar');;
dd($usedcars);

CarSensor::setAssoc(true);
$results = CarSensor::usedcar();
dd($results);

$query = [
    'keyword' => 'test',
];
$results = CarSensor::usedcar($query);