Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

PluginPaymentInfo.cshtml

@model Nop.Web.Models.Checkout.CheckoutPaymentInfoModel

@{
    Layout = "~/Views/Shared/_ColumnsOne.cshtml";

    NopHtml.AddTitleParts(T("PageTitle.Checkout").Text);
}

@T("Checkout.PaymentInfo")

@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CheckoutPaymentInfoTop, additionalData = Model })
@await Component.InvokeAsync(typeof(ButtonsViewComponent), new { widgetZone = "paypal_payment_info" })
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CheckoutPaymentInfoBottom, additionalData = Model })

@T("Checkout.OrderSummary")

@await Component.InvokeAsync(typeof(OrderSummaryViewComponent))