PHP code example of jackbayliss / laravel-parcel2goapi

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

    

jackbayliss / laravel-parcel2goapi example snippets


composer 

jackbayliss\Parcel2GoApi\Parcel2GoAPIServiceProvider::class,

$parcel = [array("Value" =>150 ,"Weight" =>2, "Length" =>9, "Width" => 8, "Height" => 1)];
$api = new \jackbayliss\Parcel2GoApi\Parcel2GoAPI();
$api->SetToCountry("GBR")->SetParcels($parcel)->GetQuote();

 

$parcels = [
array("Value" =>150 ,"Weight" =>2, "Length" =>9, "Width" => 8, "Height" => 1)
array("Value" =>250 ,"Weight" =>1, "Length" =>3, "Width" => 2, "Height" => 3)
];
$api = new \jackbayliss\Parcel2GoApi\Parcel2GoAPI();
$api->SetToCountry("GBR")->SetParcels($parcels)->GetQuote();
  

  $api->quotes
  

  $api->SetToCountry("GBR")->SetParcels($parcels)->GetQuote()->quotes