/
home
/
sjslayjy
/
public_html
/
assets
/
storage
/
framework
/
views
/
Upload File
HOME
<table> <thead> <tr> <th colspan="16" style="text-align:center;font-size:20px;">Stock Transfer Receipts</th> <th></th> </tr> <tr> <th>Circle Name</th> <th>From WareHouse</th> <th>WareHouse</th> <th>STN Invoice No.</th> <th>STN Ref. N</th> <th>STN Invoice Date</th> <th>STR No.</th> <th>STR Date</th> <th>Item Code</th> <th>Description</th> <th>UOM</th> <th>Fresh Qty</th> <th>Repaired Qty</th> <th>Faulty Qty</th> <th>Basic Rate</th> <th>Total Value</th> <th>Type</th> </tr> </thead> <tbody> <?php $__currentLoopData = $strs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$str): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($str->warehouse); ?></td> <td><?php echo e($str->from_warehouse); ?></td> <td><?php echo e($str->warehouse); ?></td> <td><?php echo e($str->invoice_no); ?></td> <td><?php echo e($str->stn_no); ?></td> <td><?php echo e(date('d-m-Y', strtotime($str->stn_date))); ?></td> <td><?php echo e($str->str_no); ?></td> <td><?php echo e(date('d-m-Y', strtotime($str->created_at))); ?></td> <td><?php echo e($str->spare_code); ?></td> <td><?php echo e($str->description); ?></td> <td><?php echo e($str->uom); ?></td> <td><?php echo e($str->fresh_qty); ?></td> <td><?php echo e($str->repaired_qty); ?> </td> <td><?php echo e($str->faulty_qty); ?></td> <td><?php echo e($str->rate); ?></td> <td><?php echo e(($str->rate*$str->repaired_qty)+($str->rate*$str->fresh_qty)); ?></td> <td><?php echo e($str->type); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table><?php /**PATH /var/www/assets/resources/views/exports/strs.blade.php ENDPATH**/ ?>