Uninstall module using Magento 2, Native command is module:uninstall to remove module from the system.
Uninstall command works only with a module installed using a composer or defined as Composer packages.
3x Magento Master
Uninstall module using Magento 2, Native command is module:uninstall to remove module from the system.
Uninstall command works only with a module installed using a composer or defined as Composer packages.
To Display Tracking information in the backend view for shipment, Magento 2 uses a order tracking view.phtml file from the Magento_Shipping module.
Full path: Magento/Shipping/view/adminhtml/templates/order/tracking/view.phtml
You can get the Shipment Tracking information, like tracking_number, carrier code, title, order_id from the shipment id using Magento 2.
Using Magento\Sales\Api\ShipmentRepositoryInterface interface to retrieve shipment object and based on shipment object we can fetch all the tracking information for a shipment.