PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
resources
/
views
/
themes
<section class="section--blog"> <div class="section__content"> <section class="section--auth"> <form class="form--auth" method="GET" action="{{ route('public.orders.tracking') }}"> <div class="form__header"> <h3>{{ __('Order tracking') }}</h3> <p>{{ __('Tracking your order status') }}</p> </div> <div class="form__content"> <div class="form-group"> <label for="txt-order-id">{{ __('Order ID') }}<sup>*</sup></label> <input class="form-control" name="order_id" id="txt-order-id" type="text" value="{{ old('order_id', request()->input('order_id')) }}" placeholder="{{ __('Order ID') }}"> @if ($errors->has('order_id')) <span class="text-danger">{{ $errors->first('order_id') }}</span> @endif </div> <div class="form-group"> <label for="txt-email">{{ __('Email Address') }}<sup>*</sup></label> <input class="form-control" name="email" id="txt-email" type="email" value="{{ old('email', request()->input('email')) }}" placeholder="{{ __('Please enter your email address') }}"> @if ($errors->has('email')) <span class="text-danger">{{ $errors->first('email') }}</span> @endif </div> <div class="form__actions"> <button type="submit" class="btn--custom btn--rounded btn--outline">{{ __('Find') }}</button> </div> </div> </form> @if ($order) <div class="customer-order-detail"> <div class="row"> <div class="col-md-6"> <h5>{{ __('Order information') }}</h5> <p> <span>{{ __('Order number') }}:</span> <strong>{{ get_order_code($order->id) }}</strong> </p> <p> <span>{{ __('Time') }}:</span> <strong>{{ $order->created_at->format('h:m d/m/Y') }}</strong> </p> <p> <span>{{ __('Order status') }}:</span> <strong class="text-info">{{ $order->status->label() }}</strong> </p> <p> <span>{{ __('Payment method') }}:</span> <strong class="text-info">{{ $order->payment->payment_channel->label() }}</strong> </p> <p> <span>{{ __('Payment status') }}:</span> <strong class="text-info">{{ $order->payment->status->label() }}</strong> </p> </div> <div class="col-md-6"> <h5>{{ __('Customer information') }}</h5> <p> <span>{{ __('Full Name') }}:</span> <strong>{{ $order->address->name }} </strong> </p> <p> <span>{{ __('Phone') }}:</span> <strong>{{ $order->address->phone }} </strong> </p> <p> <span>{{ __('Address') }}:</span> <strong> {{ $order->address->address }} </strong> </p> <p> <span>{{ __('City') }}:</span> <strong>{{ $order->address->city }} </strong> </p> <p> <span>{{ __('State') }}:</span> <strong> {{ $order->address->state }} </strong> </p> <p> <span>{{ __('Country') }}:</span> <strong> {{ $order->address->country_name }} </strong> </p> @if (EcommerceHelper::isZipCodeEnabled()) <p> <span>{{ __('Zip code') }}:</span> <strong> {{ $order->address->zip_code }} </strong> </p> @endif </div> </div> <br> <h5>{{ __('Order detail') }}</h5> <div> <div class="table-responsive"> <table class="table table-striped table-hover"> <thead> <tr> <th class="text-center">#</th> <th class="text-center">{{ __('Image') }}</th> <th>{{ __('Product') }}</th> <th class="text-center">{{ __('Amount') }}</th> <th class="text-right" style="width: 100px">{{ __('Quantity') }}</th> <th class="price text-right">{{ __('Total') }}</th> </tr> </thead> <tbody> @foreach($order->products as $key => $orderProduct) @php $product = get_products([ 'condition' => [ 'ec_products.status' => \Botble\Base\Enums\BaseStatusEnum::PUBLISHED, 'ec_products.id' => $orderProduct->product_id, ], 'take' => 1, 'select' => [ 'ec_products.images', 'ec_products.name', 'ec_products.price', 'ec_products.sale_price', 'ec_products.sale_type', 'ec_products.start_date', 'ec_products.end_date', 'ec_products.sku', ], ]); @endphp @if ($product) <tr> <td class="text-center">{{ $key + 1 }}</td> <td class="text-center"> <img src="{{ RvMedia::getImageUrl($product->image, 'thumb', false, RvMedia::getDefaultImage()) }}" width="50" alt="{{ $product->name }}"></td> <td> {{ $product->name }} ({{ $product->sku }}) @if ($product->is_variation) <p class="mb-0"> <small>{{ $product->variation_attributes }}</small> </p> @endif @if (!empty($orderProduct->options) && is_array($orderProduct->options)) @foreach($orderProduct->options as $option) @if (!empty($option['key']) && !empty($option['value'])) <p class="mb-0"><small>{{ $option['key'] }}: <strong> {{ $option['value'] }}</strong></small></p> @endif @endforeach @endif </td> <td>{{ format_price($orderProduct->price) }}</td> <td class="text-center">{{ $orderProduct->qty }}</td> <td class="money text-right"> <strong> {{ format_price($orderProduct->price * $orderProduct->qty) }} </strong> </td> </tr> @endif @endforeach </tbody> </table> </div> <p> <span>{{ __('Shipping fee') }}:</span> <strong> {{ format_price($order->shipping_amount) }} </strong> </p> <p> <span>{{ __('Total Amount') }}:</span> <strong> {{ format_price($order->amount) }} </strong> </p> </div> @if ($order->shipment && $order->shipment->note) <br> <h5 class="text-info">{{ __('Delivery Notes:') }}</h5> <p>{{ $order->shipment->note }}</p> @endif @elseif (request()->input('order_id') || request()->input('email')) <p class="text-center text-danger">{{ __('Order not found!') }}</p> @endif </section> </div> </section>
[+]
attributes
[+]
includes
[-] product-tag.blade.php
[edit]
[-] wishlist.blade.php
[edit]
[-] cart.blade.php
[edit]
[+]
..
[-] brand.blade.php
[edit]
[+]
customers
[+]
discounts
[-] products.blade.php
[edit]
[-] search.blade.php
[edit]
[-] product-category.blade.php
[edit]
[-] order-tracking.blade.php
[edit]
[-] compare.blade.php
[edit]
[-] product.blade.php
[edit]