wyyl/themes/default/checkout/payment.blade.php

42 lines
1.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('layout.master')
@section('body-class', 'page-payment')
@section('content')
<div class="container">
<div class="row mt-5 mb-5 justify-content-center">
<div class="col-12 col-md-9">@include('shared.steps', ['steps' => 4])</div>
</div>
<div class="col-12">
<div class="card order-wrap border">
<div class="card-body main-body">
<div class="order-top">
<div class="left">
<i class="bi bi-credit-card-2-back"></i>
</div>
<div class="right">
<h3 class="order-title">{{ __('shop/checkout.payment.please_pay') }}</h3>
<div class="order-info mb-4">
<table class="table table-borderless">
<tbody>
<tr>
<td>{{ __('shop/checkout.payment.order_number') }}<span class="fw-bold">{{ $order['number'] }}</span></td>
<td>{{ __('shop/checkout.payment.amounts_payable') }}<span class="fw-bold">{{ $order['total_format'] }}</span></td>
</tr>
<tr>
<td>{{ __('shop/checkout.payment.payment_method') }}<span class="fw-bold">{{ $order['payment_method_name'] }}</span></td>
</tr>
</tbody>
</table>
</div>
{!! $payment !!}
</div>
</div>
</div>
</div>
</div>
</div>
@endsection