Feat: Adding Translations to Payment and Shipping Methods, removing unecessary shipping method fulfillment type
This commit is contained in:
@@ -42,6 +42,8 @@ class OrderPaymentMethodSummaryExtension extends ViewPageExtension
|
||||
return null;
|
||||
}
|
||||
|
||||
return PaymentMethod::where('type', $type)->value('name') ?? $type;
|
||||
$method = PaymentMethod::where('type', $type)->first();
|
||||
|
||||
return $method?->translate('name') ?? $type;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user