Magento2 – Get Shipping Method in Order Using Observer

event-observermagento2shipping-methods

I want to get shipping method in my observer after placing an order. I am using sales_order_save_after event, so after place an order I want to get shipping method. I am getting shipping description but that is not enough for me. I want shipping method only but it's not returning shipping_method in response.

Please help me how to get shipping method in this situation?

Best Answer

You can get the shipping method by

$order->getShippingMethod();

or

$order->getShippingAddress()->getShippingMethod();
Related Topic