/
home
/
sjslayjy
/
public_html
/
assets
/
storage
/
framework
/
views
/
Upload File
HOME
<table> <thead> <tr> <th colspan="16" style="text-align:center;font-size:20px;">Goods Receiving Notes</th> <th></th> </tr> <tr> <th>GRN</th> <th>GRN Date</th> <th>Ref DocNo</th> <th>Item Code</th> <th>Item Description</th> <th>Supplier Name</th> <th>Supplier Invoice Number</th> <th>Supplier Invoice Date</th> <th>Delivery Qty</th> <th>Rate</th> <th>Amount<br>Excluding Tax</th> <th>Tax Amount</th> <th>Fright Amount</th> <th>Sup Code</th> <th>Ware House </th> <!-- <th>PKTS</th> --> <th>Transporter Details</th> <th>E Way Bill</th> <!-- <th>Vehicle No</th> --> </tr> </thead> <tbody> <?php $__currentLoopData = $grns; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $grn): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($grn->grn_no); ?></td> <td><?php echo e($grn->grn_date); ?></td> <td><?php echo e($grn->reference_number); ?></td> <td><?php echo e($grn->item_code); ?></td> <td><?php echo e($grn->item_discription); ?></td> <td><?php echo e($grn->supplier_name); ?></td> <td><?php echo e($grn->invoice_number); ?></td> <td><?php echo e($grn->invoice_date); ?></td> <td><?php echo e($grn->quantity); ?></td> <td><?php echo e($grn->rate); ?></td> <td><?php echo e($grn->amount); ?></td> <td><?php echo e($grn->tax_amount); ?></td> <!-- <td><?php echo e($grn->freightCharges); ?></td> --> <?php if($grn_no != $grn->grn_no): ?> <td><?php echo e($grn->freightCharges); ?></td> <?php else: ?> <td></td> <?php endif; ?> <?php $grn_no = $grn->grn_no; ?> <td></td> <td><?php echo e($grn->warehouse); ?></td> <!-- <td></td> --> <td><?php echo e($grn->transporter_details); ?></td> <td><?php echo e($grn->eway_bill_no); ?></td> <!-- <td></td> --> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table><?php /**PATH /var/www/assets/resources/views/exports/grns.blade.php ENDPATH**/ ?>