v2.0.0
Pre-release
Pre-release
Features
- Implement Laravel collections and helpers
Improvements
- #78 fix reference ids having to be unique
- Performance boost for multiple shipments (up to 3 times faster)
Things that no longer work
- Set consignment by reference.
Example:
$myParcelCollection->addConsignment($consignment);
$myParcelCollection->createConcepts()->setLatestData();
$consignment->getStatus();
Now you need to re-collect the consignment
$myParcelCollection->addConsignment($consignment);
$consignment = $myParcelCollection->createConcepts()->setLatestData()->first();
$consignment->getStatus();