PHP code example of mohamedmohamedhekal / shipbridge
1. Go to this page and download the library: Download mohamedmohamedhekal/shipbridge 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/ */
mohamedmohamedhekal / shipbridge example snippets
use Hekal\ShipBridge\Facades\ShipBridge;
use Hekal\ShipBridge\DTOs\Address;
use Hekal\ShipBridge\DTOs\CreateShipmentRequest;
use Hekal\ShipBridge\DTOs\Parcel;
$shipment = ShipBridge::driver('bosta')->createShipment(new CreateShipmentRequest(
origin: new Address('Warehouse', '1 Industrial Rd', 'Cairo', 'EG'),
destination: new Address('Customer', '12 Nile St', 'Giza', 'EG'),
parcels: [new Parcel(weightKg: 1.2)],
reference: 'ORD-42',
));
$label = ShipBridge::driver('bosta')->label($shipment->id);
$tracking = ShipBridge::driver('bosta')->track($shipment->trackingNumber);