¨4.0.1¨
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<div class="address-information-wrapper">
|
||||
<h3 class="section-title">{{ trans('order::orders.address_information') }}</h3>
|
||||
<h4 class="section-title">{{ trans('order::orders.address_information') }}</h4>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="billing-address">
|
||||
<h4 class="pull-left">{{ trans('order::orders.billing_address') }}</h4>
|
||||
<h5 class="pull-left">{{ trans('order::orders.billing_address') }}</h5>
|
||||
|
||||
<span>
|
||||
{{ $order->billing_full_name }}
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
<div class="col-md-6">
|
||||
<div class="shipping-address">
|
||||
<h4 class="pull-left">{{ trans('order::orders.shipping_address') }}</h4>
|
||||
<h5 class="pull-left">{{ trans('order::orders.shipping_address') }}</h5>
|
||||
|
||||
<span>
|
||||
{{ $order->shipping_full_name }}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div class="items-ordered-wrapper">
|
||||
<h3 class="section-title">{{ trans('order::orders.items_ordered') }}</h3>
|
||||
<h4 class="section-title">{{ trans('order::orders.items_ordered') }}</h4>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
@@ -25,6 +25,19 @@
|
||||
<a href="{{ route('admin.products.edit', $product->product->id) }}">{{ $product->name }}</a>
|
||||
@endif
|
||||
|
||||
@if ($product->hasAnyVariation())
|
||||
<br>
|
||||
@foreach ($product->variations as $variation)
|
||||
<span>
|
||||
{{ $variation->name }}:
|
||||
|
||||
<span>
|
||||
{{ $variation->values()->first()?->label }}{{ $loop->last ? "" : "," }}
|
||||
</span>
|
||||
</span>
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
@if ($product->hasAnyOption())
|
||||
<br>
|
||||
@foreach ($product->options as $option)
|
||||
|
||||
@@ -15,12 +15,12 @@
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<h3 class="section-title">{{ trans('order::orders.order_and_account_information') }}</h3>
|
||||
<h4 class="section-title">{{ trans('order::orders.order_and_account_information') }}</h4>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="order clearfix">
|
||||
<h4>{{ trans('order::orders.order_information') }}</h4>
|
||||
<h5>{{ trans('order::orders.order_information') }}</h5>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
@@ -96,7 +96,7 @@
|
||||
|
||||
<div class="col-md-6">
|
||||
<div class="account-information">
|
||||
<h4>{{ trans('order::orders.account_information') }}</h4>
|
||||
<h5>{{ trans('order::orders.account_information') }}</h5>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
@endpush
|
||||
|
||||
@push('scripts')
|
||||
<script>
|
||||
<script type="module">
|
||||
keypressAction([
|
||||
{ key: 'b', route: "{{ route('admin.orders.index') }}" }
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user