Exemple #1
0
 public function shippingMethods()
 {
     if (\GC::orderRequiresShipping()) {
         $this->partial('shippingMethods', ['rates' => \GC::getShippingMethodOptions(), 'requiresShipping' => true]);
     } else {
         $this->partial('shippingMethods', ['rates' => [], 'requiresShipping' => false]);
     }
 }