One Hat Cyber Team
Your IP :
216.73.216.93
Server IP :
178.63.234.5
Server :
Linux whm01.ins-jo.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Server Software :
Apache
PHP Version :
8.1.32
Buat File
|
Buat Folder
Dir :
~
/
home
/
business
/
www
/
storage
/
framework
/
views
/
View File Name :
a7329b5f5ba9bc9222e5938703c8ebd3504f7325.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Invoice</title> <link rel="stylesheet" href="<?php echo e(asset('assets/front/css/design-pdf.css')); ?>"> </head> <body> <div class="main"> <table class="heading"> <tr> <td> <?php if($userBs->logo): ?> <img src="<?php echo e(asset('/assets/front/img/user/' . $userBs->logo)); ?>" height="40" class="d-inline-block "> <?php else: ?> <img src="<?php echo e(asset('assets/admin/img/noimage.jpg')); ?>" height="40" class="d-inline-block"> <?php endif; ?> </td> <td class="text-right strong invoice-heading"><?php echo e(__('INVOICE')); ?></td> </tr> </table> <div class="header"> <div class="ml-20"> <table class="text-left"> <tr> <td class="strong small gry-color"><?php echo e(__('Bill to')); ?>:</td> </tr> <tr> <td class="strong"> <?php echo e(ucfirst($order->billing_fname)); ?> <?php echo e(ucfirst($order->billing_lname)); ?> </td> </tr> <tr> <td> <?php echo e($order->billing_address); ?> </td> </tr> <tr> <td> <?php echo e($order->billing_city); ?> , <?php echo e($order->billing_state); ?> </td> </tr> <tr> <td> <?php echo e($order->billing_country); ?> </td> </tr> <tr> <td> <?php echo e($order->billing_email); ?> </td> </tr> </table> </div> <div class="order-details"> <table class="text-right"> <tr> <td class="strong"><?php echo e(__('Order Details')); ?>:</td> </tr> <tr> <td class="gry-color small"><strong><?php echo e(__('Order ID')); ?>:</strong> # <?php echo e($order->order_number); ?></td> </tr> <tr> <td class="gry-color small"><strong><?php echo e(__('Payment Method')); ?>:</strong> <?php echo e($order->method); ?></td> </tr> <tr> <td class="gry-color small"> <strong><?php echo e(__('Payment Status')); ?>:</strong><?php echo e($order->payment_status); ?> </td> </tr> <tr> <td class="gry-color small"><strong><?php echo e(__('Order Date')); ?>:</strong> <?php echo e(\Illuminate\Support\Carbon::now()->format('d/m/Y')); ?></td> </tr> </table> </div> </div> <div class="package-info"> <table class="padding text-left small border-bottom"> <thead> <tr class="gry-color info-titles"> <th width="20%"><?php echo e(__('Title')); ?></th> <th width="20%"><?php echo e(__('Quantity')); ?></th> <th width="20%"><?php echo e(__('Price')); ?></th> </tr> </thead> <tbody class="strong"> <?php $__currentLoopData = $order->orderitems; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr class="text-center"> <td><?php echo e($item->title); ?></td> <td><?php echo e($item->qty); ?></td> <td> <?php echo e($be->base_currency_text_position == 'left' ? $be->base_currency_text : ''); ?> <?php echo e($item->price); ?> <?php echo e($be->base_currency_text_position == 'right' ? $be->base_currency_text : ''); ?> <br> <?php if($item->variations != 'null'): ?> <?php $variations = json_decode($item->variations); ?> <?php $__currentLoopData = $variations; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $k => $vitm): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <table class="variation-table"> <tr> <td><?php echo e($vitm->name); ?> <small>(<?php echo e($k); ?>)</small> : </td> <td><?php echo e($be->base_currency_text_position == 'left' ? $be->base_currency_text : ''); ?> <?php echo e($vitm->price); ?> <?php echo e($be->base_currency_text_position == 'right' ? $be->base_currency_text : ''); ?> </td> </tr> </table> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <div class="text-right small"> <?php if($order->tax): ?> <strong><?php echo e(__('Tax')); ?>:</strong> <?php echo e($be->base_currency_text_position == 'left' ? $be->base_currency_text : ''); ?> <?php echo e($order->tax); ?> <br> <?php echo e($be->base_currency_text_position == 'right' ? $be->base_currency_text : ''); ?> <br> <?php endif; ?> <?php if($order->shipping_charge): ?> <strong><?php echo e(__('Shipping charge')); ?>:</strong> <?php echo e($be->base_currency_text_position == 'left' ? $be->base_currency_text : ''); ?> <?php echo e($order->shipping_charge); ?> <br> <?php echo e($be->base_currency_text_position == 'right' ? $be->base_currency_text : ''); ?> <br> <?php endif; ?> <?php if($order->discount): ?> <strong><?php echo e(__('Discount')); ?>:</strong> <?php echo e($be->base_currency_text_position == 'left' ? $be->base_currency_text : ''); ?> <?php echo e($order->discount); ?> <br> <?php echo e($be->base_currency_text_position == 'right' ? $be->base_currency_text : ''); ?> <br> <?php endif; ?> <?php if($order->cart_total): ?> <strong><?php echo e(__('Cart total')); ?>:</strong> <?php echo e($be->base_currency_text_position == 'left' ? $be->base_currency_text : ''); ?> <?php echo e($order->cart_total); ?> <br> <?php echo e($be->base_currency_text_position == 'right' ? $be->base_currency_text : ''); ?> <br> <?php endif; ?> <strong><?php echo e(__('Total')); ?>:</strong> <?php echo e($be->base_currency_text_position == 'left' ? $be->base_currency_text : ''); ?> <?php echo e($order->total); ?> <?php echo e($be->base_currency_text_position == 'right' ? $be->base_currency_text : ''); ?> <br> </div> </div> <table class="ml-20"> <tr> <td class=" regards"><?php echo e(__('Thanks & Regards')); ?>,</td> </tr> <tr> <td class=" strong regards"><?php echo e($userBs->website_title); ?></td> </tr> </table> </div> </body> </html> <?php /**PATH /home/business/public_html/resources/views/pdf/item.blade.php ENDPATH**/ ?>