Edit File: 8da4ed48867e8e69fc7fc8b42ea72481c7c3cc4a.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Thunder_Receipt"> <link rel="icon" type="image/x-icon" href="/images/logo.png"> <title><?php echo e(__('apis.the_invoice')); ?> - <?php echo e(__('admin.order_num')); ?> #<?php echo e($response['order_number']); ?></title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet"> <link rel="stylesheet" href="<?php echo e(asset('invoice-assets/css/style.css')); ?>"> </head> <body> <div class="receipt_page"> <div class="header"> <div class="image"> <img src="<?php echo e(asset(Cache::get('settings')['logo'])); ?>" alt="image" loading="lazy"> </div> <h4><?php echo e(__('apis.the_invoice')); ?></h4> <div class="image"> <img src="https://api.qrserver.com/v1/create-qr-code/?data=<?php echo e(route('user.normal_order.invoice', $response['order_number'])); ?>" alt="image" loading="lazy"> </div> </div> <ul> <li> <span><?php echo e(__('admin.order_num')); ?></span> <span> #<?php echo e($response['order_number']); ?></span> </li> <li> <span><?php echo e(__('validation.attributes.delivery_method')); ?></span> <span><?php echo e($response['receiving_method']['text']); ?></span> </li> <?php if($response['receiving_method']['value'] == App\Enums\ProductDeliveryTypesEnum::Home->value): ?> <li> <span><?php echo e(__('apis.delivery_address')); ?> </span> <span> <?php echo e($response['map_desc']); ?> </span> </li> <?php endif; ?> <li> <span><?php echo e(__('apis.order_time')); ?> </span> <span> <?php echo e(isset($response['schedule_execution_date']) && isset($response['schedule_execution_time']) ? $response['schedule_execution_date'] . ' ' . $response['schedule_execution_time'] : $response['financial_transactions']['created_at']); ?> </span> </li> <li> <span><?php echo e(__('validation.attributes.order_total')); ?></span> <span> <?php echo e(isset($response['financial_transactions']['total_products_before_discount']) ? $response['financial_transactions']['total_products_before_discount'] : $response['financial_transactions']['total_products'] . ' ' . __('site.currency')); ?></span> </li> <?php if($response['receiving_method']['value'] == App\Enums\ProductDeliveryTypesEnum::Home->value): ?> <li> <span><?php echo e(__('apis.delivery_price')); ?></span> <span> <?php echo e($response['financial_transactions']['delivery_price'] . ' ' . __('site.currency')); ?></span> </li> <?php endif; ?> <li> <span><?php echo e(__('apis.value_added_tax')); ?> <?php echo e('(' . Cache::get('settings')['vat_ratio'] . '%)'); ?></span> <span> <?php echo e($response['financial_transactions']['vat_amount'] . ' ' . __('site.currency')); ?></span> </li> <?php if(isset($response['financial_transactions']['coupon_amount']) && $response['financial_transactions']['coupon_amount'] != 0): ?> <li> <span><?php echo e(__('apis.disc_amount')); ?> . </span> <span> <?php echo e($response['financial_transactions']['coupon_amount'] . ' ' . __('site.currency')); ?></span> </li> <li> <span><?php echo e(__('apis.order_amount_after_discount')); ?></span> <span> <del><?php echo e($response['financial_transactions']['total_products'] . ' ' . __('site.currency')); ?></del> <?php echo e(isset($response['financial_transactions']['total_products_before_discount']) ? $response['financial_transactions']['total_products_before_discount'] . ' ' . __('site.currency') : ''); ?> </span> </li> <?php endif; ?> <li> <span><?php echo e(__('apis.final_total')); ?></span> <span><?php echo e($response['financial_transactions']['final_total'] . ' ' . __('site.currency')); ?></span> </li> </ul> </div> </body> </html> <?php /**PATH /home/thunderw/public_html/resources/views/app/normal_order_invoice.blade.php ENDPATH**/ ?>
Back to File Manager