Current File : /home/getxxhzo/app.genicards.com/storage/framework/views/6bacb1bb8fdcf05e651fa90f108aa756.php |
<?php $__env->startSection('title'); ?>
<?php echo e(__('messages.product_details')); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('header_toolbar'); ?>
<div class="container-fluid">
<div class="d-md-flex align-items-center justify-content-between mb-5">
<h1 class="mb-0"><?php echo $__env->yieldContent('title'); ?></h1>
<div class="text-end mt-4 mt-md-0">
<a href="<?php echo e(route('product-orders.index')); ?>">
<button type="button" class="btn btn-outline-primary float-end"><?php echo e(__('messages.common.back')); ?></button>
</a>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="container-fluid">
<div class="d-flex flex-column">
<div class="card card-check">
<div class="card-body card-body-check">
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="overview" role="tabpanel"
aria-labelledby="overview-tab">
<div class="row">
<div class="col-sm-6 d-flex flex-column mb-md-10 mb-5">
<label for="name" class="pb-2 fs-4 text-gray-600"><?php echo e(__('messages.vcard.product_name')); ?>:</label>
<span class="fs-4 text-gray-800"><?php echo e($productTransaction->product->name); ?></span>
</div>
<div class="col-sm-6 d-flex flex-column mb-md-10 mb-5">
<label for="name" class="pb-2 fs-4 text-gray-600"><?php echo e(__('messages.mail.name')); ?></label>
<span class="fs-4 text-gray-800"><?php echo e($productTransaction->name); ?></span>
</div>
<div class="col-sm-6 d-flex flex-column mb-md-10 mb-5">
<label for="name" class="pb-2 fs-4 text-gray-600"><?php echo e(__('messages.admin.email')); ?>:</label>
<span class="fs-4 text-gray-800"><?php echo e($productTransaction->email); ?></span>
</div>
<?php if($productTransaction->phone): ?>
<div class="col-sm-6 d-flex flex-column mb-md-10 mb-5">
<label for="name" class="pb-2 fs-4 text-gray-600"><?php echo e(__('messages.user.phone')); ?>:</label>
<span class="fs-4 text-gray-800" dir="ltr" style='<?php echo e(getCurrentLanguageName() == 'ar' ? 'margin-right: 0px; margin-left: auto;"' : ''); ?>'><?php echo e($productTransaction->phone); ?></span>
</div>
<?php endif; ?>
<div class="col-sm-6 d-flex flex-column mb-md-10 mb-5">
<label for="name" class="pb-2 fs-4 text-gray-600"><?php echo e(__('messages.payment_type')); ?>:</label>
<span class="fs-4 text-gray-800"><?php echo e(__('messages.'.App\Models\Product::PAYMENT_METHOD[$productTransaction->type])); ?></span>
</div>
<div class="col-sm-6 d-flex flex-column mb-md-10 mb-5">
<label for="name" class="pb-2 fs-4 text-gray-600"><?php echo e(__('messages.subscription.amount')); ?>:</label>
<span class="fs-4 text-gray-800"><?php echo e($productTransaction->currency->currency_icon); ?><?php echo e(number_format($productTransaction->amount, 2)); ?></span>
</div>
<div class="col-sm-6 d-flex flex-column mb-md-10 mb-5">
<label for="name" class="pb-2 fs-4 text-gray-600"><?php echo e(__('messages.setting.address')); ?>:</label>
<span class="fs-4 text-gray-800"><?php echo e($productTransaction->address); ?></span>
</div>
<div class="col-sm-6 d-flex flex-column mb-md-10 mb-5">
<label for="name" class="pb-2 fs-4 text-gray-600"><?php echo e(__('messages.vcard.order_at')); ?>:</label>
<span class="fs-4 text-gray-800">
<?php echo e(getFormattedDateTime($productTransaction->created_at)); ?>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/getxxhzo/app.genicards.com/resources/views/product_transactions/show.blade.php ENDPATH**/ ?>